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: '}}'
|
|
};
|