style: lint and fmt code

This commit is contained in:
ReaJason
2026-08-30 21:19:42 +08:00
parent 3ada01bd97
commit e1152000f2
24 changed files with 1247 additions and 133 deletions
+6 -6
View File
@@ -1,10 +1,10 @@
declare module "@run-slicer/cfr" {
export type Options = Record<string, string>;
export type Options = Record<string, string>;
export interface Config {
source?: (name: string) => Uint8Array | null;
options?: Options;
}
export interface Config {
source?: (name: string) => Uint8Array | null;
options?: Options;
}
export function decompile(name: string, config?: Config): Promise<string>;
export function decompile(name: string, config?: Config): Promise<string>;
}