init
This commit is contained in:
16
mc_test/node_modules/@electron/universal/dist/esm/file-utils.d.ts
generated
vendored
Executable file
16
mc_test/node_modules/@electron/universal/dist/esm/file-utils.d.ts
generated
vendored
Executable file
@ -0,0 +1,16 @@
|
||||
export declare enum AppFileType {
|
||||
MACHO = 0,
|
||||
PLAIN = 1,
|
||||
INFO_PLIST = 2,
|
||||
SNAPSHOT = 3,
|
||||
APP_CODE = 4
|
||||
}
|
||||
export declare type AppFile = {
|
||||
relativePath: string;
|
||||
type: AppFileType;
|
||||
};
|
||||
/**
|
||||
*
|
||||
* @param appPath Path to the application
|
||||
*/
|
||||
export declare const getAllAppFiles: (appPath: string) => Promise<AppFile[]>;
|
||||
Reference in New Issue
Block a user