UNPKG

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) 386 B
import { escape } from "./escape.js"; import { template } from "./template.js"; //#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 };