Revert "Add Decodal formatter"

This reverts commit 22f6bc1ab9.
This commit is contained in:
2026-07-09 17:46:24 +09:00
parent 22f6bc1ab9
commit ac99c4cb4e
16 changed files with 24 additions and 606 deletions
-3
View File
@@ -5,15 +5,12 @@ export function evaluate(source: string): string;
export function evaluateProject(entry: string, files_json: string): string;
export function formatSource(source: string): string;
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
export interface InitOutput {
readonly memory: WebAssembly.Memory;
readonly evaluate: (a: number, b: number) => [number, number];
readonly evaluateProject: (a: number, b: number, c: number, d: number) => [number, number];
readonly formatSource: (a: number, b: number) => [number, number];
readonly __wbindgen_externrefs: WebAssembly.Table;
readonly __wbindgen_malloc: (a: number, b: number) => number;
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;