Files
MemShellParty/web/vendor/cfr/cfr.d.ts
T
2026-08-30 21:19:42 +08:00

11 lines
269 B
TypeScript

declare module "@run-slicer/cfr" {
export type Options = Record<string, string>;
export interface Config {
source?: (name: string) => Uint8Array | null;
options?: Options;
}
export function decompile(name: string, config?: Config): Promise<string>;
}