blob: ff08b0e599ed39d7ab391cb6ef2d5977c6898a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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[]>;
|