UNPKG
@funztic/db
Version:
latest (1.0.0)
1.0.0
TypeScript기반 파일 데이터베이스, zod를 지원합니다.
@funztic/db
/
dist
/
worker
/
db-saver.d.ts
11 lines
(10 loc)
•
210 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
WorkerMessage
= {
action
:
'save'
;
filePath
:
string
;
data
:
string
; };
export
type
WorkerResponse
= {
success
:
boolean
;
error
?:
string
; };
export
declare
const
workerPath
:
string
;