mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
11 lines
285 B
TypeScript
11 lines
285 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>;
|
|
}
|