es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
18 lines (17 loc) • 388 B
text/typescript
import { escape } from "./escape.mjs";
import { template } from "./template.mjs";
//#region src/compat/string/templateSettings.d.ts
declare const templateSettings: {
escape: RegExp;
evaluate: RegExp;
interpolate: RegExp;
variable: string;
imports: {
_: {
escape: typeof escape;
template: typeof template;
};
};
};
//#endregion
export { templateSettings };