summaryrefslogtreecommitdiff
path: root/desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts')
-rw-r--r--desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts b/desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts
new file mode 100644
index 0000000..4d63f07
--- /dev/null
+++ b/desktop/node_modules/@electron/osx-sign/dist/cjs/flat.d.ts
@@ -0,0 +1,11 @@
+import { FlatOptions } from './types';
+/**
+ * This function is exported and returns a promise flattening the application.
+ */
+export declare function buildPkg(_opts: FlatOptions): Promise<void>;
+/**
+ * This function is exported with normal callback implementation.
+ *
+ * @deprecated Please use the promise based "buildPkg" method
+ */
+export declare const flat: (opts: FlatOptions, cb?: ((error?: Error) => void) | undefined) => void;