@iyulab/oops
Version:
Core SDK for Oops - Safe text file editing with automatic backup
13 lines • 356 B
TypeScript
/**
* Configuration management for Oops
*/
import { OopsConfig } from './types';
export declare const DEFAULT_CONFIG: OopsConfig;
export declare class ConfigManager {
private config;
constructor(config?: Partial<OopsConfig>);
get(): OopsConfig;
set(key: string, value: any): void;
reset(): void;
}
//# sourceMappingURL=config.d.ts.map