diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
commit | ae187b6d75c8079da0be1dc288613bad8466fe61 (patch) | |
tree | 5ea0d34185a2270f29ffaa65e1f5258028d7d5d0 /desktop/node_modules/@electron/universal/dist/cjs/index.d.ts | |
download | mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.gz mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.bz2 mist-ae187b6d75c8079da0be1dc288613bad8466fe61.zip |
Initial commit
Diffstat (limited to 'desktop/node_modules/@electron/universal/dist/cjs/index.d.ts')
-rw-r--r-- | desktop/node_modules/@electron/universal/dist/cjs/index.d.ts | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/desktop/node_modules/@electron/universal/dist/cjs/index.d.ts b/desktop/node_modules/@electron/universal/dist/cjs/index.d.ts new file mode 100644 index 0000000..e60bb7d --- /dev/null +++ b/desktop/node_modules/@electron/universal/dist/cjs/index.d.ts @@ -0,0 +1,37 @@ +export 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; + /** + * Minimatch pattern of paths that should not receive an injected ElectronAsarIntegrity value + */ + infoPlistsToIgnore?: string; +}; +export declare const makeUniversalApp: (opts: MakeUniversalOpts) => Promise<void>; |