angular/modules/@angular/compiler/src/interpolation_config.ts

10 lines
171 B
TypeScript

export interface InterpolationConfig {
start: string;
end: string;
}
export const DEFAULT_INTERPOLATION_CONFIG: InterpolationConfig = {
start: '{{',
end: '}}'
};