scripts.d.ts 267 B

12345678910
  1. export declare function parseScripts(name: string, pkgPath: string): {
  2. name: string;
  3. platform: keyof UniApp.PagesJsonPagePlatformStyle;
  4. define: {
  5. [name: string]: string;
  6. };
  7. context: {
  8. [name: string]: boolean;
  9. };
  10. } | undefined;