export interface TemplateResult { /** * The text resulting from replacing the placeholders that match the name of the data members * with the value of those data members */ text?: string; /** * The array with the name of the data members whose names did not match the ones in the placeholders */ keysNotInData: string[]; } /** * Replaces any placeholders "{{name}}" with the value of the data property that matches that name * @param text * @param data */ export default function template(text: string, data?: any): TemplateResult; //# sourceMappingURL=template.d.ts.map