UNPKG

@funztic/db

Version:

TypeScript기반 파일 데이터베이스, zod를 지원합니다.

11 lines (10 loc) 210 B
export type WorkerMessage = { action: 'save'; filePath: string; data: string; }; export type WorkerResponse = { success: boolean; error?: string; }; export declare const workerPath: string;