From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- .../@electron/universal/dist/cjs/index.d.ts | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 node_modules/@electron/universal/dist/cjs/index.d.ts (limited to 'node_modules/@electron/universal/dist/cjs/index.d.ts') diff --git a/node_modules/@electron/universal/dist/cjs/index.d.ts b/node_modules/@electron/universal/dist/cjs/index.d.ts deleted file mode 100644 index b4829e1..0000000 --- a/node_modules/@electron/universal/dist/cjs/index.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -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; -export {}; -- cgit v1.2.3-86-g962b