10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
|
|
import { Provider } from '@angular/core';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Production replacement for mock-gateway.providers.ts (angular.json
|
||
|
|
* fileReplacements). Imports nothing on purpose: this file existing is what
|
||
|
|
* guarantees no *LocalGateway or its fixtures can be reached from a
|
||
|
|
* production build.
|
||
|
|
*/
|
||
|
|
export const MOCK_GATEWAY_PROVIDERS: Provider[] = [];
|