mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-14 02:02:42 +08:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
![]() |
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[]>;
|