Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/shared/interfaces/Storage.ts
2631 views
1
export interface IOperation {
2
scope: string;
3
}
4
5
export interface IFindOperation extends IOperation {
6
query: any;
7
}
8
9
export interface IInsertOperation extends IOperation {
10
item: any;
11
}
12
13
export interface IRemoveOperation extends IFindOperation {
14
multi?: boolean;
15
}
16
17
export interface IUpdateOperation extends IFindOperation, IRemoveOperation {
18
value: any;
19
}
20
21