版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
12345678910
  1. /**
  2. * Code generator for i18n yaml resource
  3. */
  4. /// <reference types="node" />
  5. import type { YAMLProgram } from 'yaml-eslint-parser/lib/ast';
  6. import type { CodeGenOptions, CodeGenResult } from './codegen';
  7. /**
  8. * @internal
  9. */
  10. export declare function generate(targetSource: string | Buffer, { type, legacy, bridge, exportESM, useClassComponent, filename, inSourceMap, locale, isGlobal, sourceMap, env, forceStringify, onError, strictMessage, escapeHtml }: CodeGenOptions, injector?: () => string): CodeGenResult<YAMLProgram>;