436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
432 B
TypeScript
19 lines
432 B
TypeScript
/// <reference types="node" />
|
|
export declare enum AppFileType {
|
|
MACHO = 0,
|
|
PLAIN = 1,
|
|
INFO_PLIST = 2,
|
|
SNAPSHOT = 3,
|
|
APP_CODE = 4
|
|
}
|
|
export type AppFile = {
|
|
relativePath: string;
|
|
type: AppFileType;
|
|
};
|
|
/**
|
|
*
|
|
* @param appPath Path to the application
|
|
*/
|
|
export declare const getAllAppFiles: (appPath: string) => Promise<AppFile[]>;
|
|
export declare const readMachOHeader: (path: string) => Promise<Buffer>;
|