index.d.ts 712 B

12345678
  1. import { APP_PLATFORM, CheckOptions, CheckResult } from './utils';
  2. export { genManifestFile } from './manifest';
  3. export { restoreDex } from './dex';
  4. export { restoreSourceMap, storeSourceMap } from './sourceMap';
  5. export declare function checkKotlinCompile(playground: typeof process.env.HX_USE_BASE_TYPE, options: CheckOptions): Promise<CheckResult>;
  6. export declare function checkSwiftCompile(playground: typeof process.env.HX_USE_BASE_TYPE, options: CheckOptions): Promise<CheckResult>;
  7. export declare function checkCompile(platform: APP_PLATFORM, playground: typeof process.env.HX_USE_BASE_TYPE, options: CheckOptions): Promise<CheckResult>;
  8. export declare function initCheckOptionsEnv(): CheckOptions['env'];