diff options
| author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 | 
|---|---|---|
| committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 | 
| commit | 703e03aba33f234712206769f57717ba7d92d23d (patch) | |
| tree | 0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/@electron/universal/dist/esm/index.d.ts | |
| parent | ab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff) | |
| download | FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst  | |
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/@electron/universal/dist/esm/index.d.ts')
| -rw-r--r-- | node_modules/@electron/universal/dist/esm/index.d.ts | 34 | 
1 files changed, 34 insertions, 0 deletions
diff --git a/node_modules/@electron/universal/dist/esm/index.d.ts b/node_modules/@electron/universal/dist/esm/index.d.ts new file mode 100644 index 0000000..b4829e1 --- /dev/null +++ b/node_modules/@electron/universal/dist/esm/index.d.ts @@ -0,0 +1,34 @@ +declare type MakeUniversalOpts = { +    /** +     * Absolute file system path to the x64 version of your application.  E.g. /Foo/bar/MyApp_x64.app +     */ +    x64AppPath: string; +    /** +     * Absolute file system path to the arm64 version of your application.  E.g. /Foo/bar/MyApp_arm64.app +     */ +    arm64AppPath: string; +    /** +     * Absolute file system path you want the universal app to be written to.  E.g. /Foo/var/MyApp_universal.app +     * +     * If this file exists it will be overwritten ONLY if "force" is set to true +     */ +    outAppPath: string; +    /** +     * Forcefully overwrite any existing files that are in the way of generating the universal application +     */ +    force: boolean; +    /** +     * Merge x64 and arm64 ASARs into one. +     */ +    mergeASARs?: boolean; +    /** +     * Minimatch pattern of paths that are allowed to be present in one of the ASAR files, but not in the other. +     */ +    singleArchFiles?: string; +    /** +     * Minimatch pattern of binaries that are expected to be the same x64 binary in both of the ASAR files. +     */ +    x64ArchFiles?: string; +}; +export declare const makeUniversalApp: (opts: MakeUniversalOpts) => Promise<void>; +export {};  | 
