angular-server-side-configuration
Version:
Configure an angular application on the server
10 lines (9 loc) • 347 B
text/typescript
import type { logging } from '@angular-devkit/core';
import type { NgsscContext } from './ngssc-context.cjs';
/** Detect environment variables in given file. */
export declare class VariableDetector {
private _logger?;
constructor(logger?: logging.LoggerApi);
detect(fileContent: string): NgsscContext;
private _extractVariable;
}