/** * A JS string literal for embedding a runtime value in GENERATED source. `JSON.stringify` alone is * not a code sanitizer: its output can still contain `<` (so a value holding `` breaks out * of an inline-script embedding of the generated code) and the U+2028/U+2029 line separators (legal * inside JSON strings, line terminators to pre-ES2019 parsers). Escape all three so the emitted * literal is inert in every context the generated source can land in. */ export declare function jsStringLiteral(value: string): string; //# sourceMappingURL=js-string.d.ts.map