版博士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.

transform-3536c1e4.d.ts 374 B

12345678910
  1. import { Statement } from '@babel/types';
  2. declare function transformDefineOptions(code: string, id: string): {
  3. code: string;
  4. map: any;
  5. } | undefined;
  6. declare const checkDefaultExport: (stmts: Statement[]) => void;
  7. declare const getIdentifiers: (stmts: Statement[]) => string[];
  8. export { checkDefaultExport as c, getIdentifiers as g, transformDefineOptions as t };