|
12345678910 |
- /**
- * Code generator for i18n js resource
- */
- /// <reference types="node" />
- import type { Node } from 'estree';
- import type { CodeGenOptions, CodeGenResult } from './codegen';
- /**
- * @internal
- */
- export declare function generate(targetSource: string | Buffer, { type, bridge, exportESM, filename, inSourceMap, locale, isGlobal, sourceMap, env, forceStringify, onError, strictMessage, escapeHtml, useClassComponent, allowDynamic }: CodeGenOptions, injector?: () => string): CodeGenResult<Node>;
|