UNPKG

503 BTypeScriptView Raw
1export declare class Interpolate {
2 private static _startSymbol;
3 private static _endSymbol;
4 get startSymbol(): string;
5 set startSymbol(value: string);
6 get endSymbol(): string;
7 set endSymbol(value: string);
8 private static unescapeText;
9 private static escape;
10 private static escapedStartRegexp;
11 private static escapedEndRegexp;
12 static build(text: string, mustHaveExpression?: boolean, trustedContext?: boolean, allOrNothing?: boolean): (value: any) => string;
13}