Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
461 B
TypeScript
21 lines
461 B
TypeScript
interface ConfigOptions {
|
|
name: string;
|
|
}
|
|
export declare class GlobalConfig {
|
|
private project;
|
|
private dir;
|
|
private file;
|
|
constructor(project: ConfigOptions);
|
|
private _store?;
|
|
private get store();
|
|
private set store(value);
|
|
private ensureDir;
|
|
write(): void;
|
|
clear(): void;
|
|
delete(key: string): boolean;
|
|
get(key: string): any;
|
|
has(key: string): boolean;
|
|
set(key: string, value: any): void;
|
|
}
|
|
export {};
|