api.d.ts 486 B

123456
  1. import type { UTSBundleOptions, UTSOptions, UTSParseOptions, UTSResult } from './types';
  2. export declare function parse(source: string, options?: UTSParseOptions): any;
  3. export declare function toKotlin(options: UTSOptions): Promise<UTSResult>;
  4. export declare function bundleKotlin(options: UTSBundleOptions): Promise<UTSResult>;
  5. export declare function toSwift(options: UTSOptions): Promise<UTSResult>;
  6. export declare function bundleSwift(options: UTSBundleOptions): Promise<UTSResult>;