//#region src/core/codegen/emit.d.ts /** * Tagged template literal that strips newlines and leading whitespace. * Allows writing generated code with readable indentation while producing minified output. * * Used exclusively by Slow Path generators (codegen/schemas/). */ declare function emit(strings: TemplateStringsArray, ...values: (string | number | bigint | boolean)[]): string; //#endregion export { emit }; //# sourceMappingURL=emit.d.ts.map