mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
|
|
export interface InterpolationConfig {
|
||
|
|
start: string;
|
||
|
|
end: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const DEFAULT_INTERPOLATION_CONFIG: InterpolationConfig = {
|
||
|
|
start: '{{',
|
||
|
|
end: '}}'
|
||
|
|
};
|