update package json

This commit is contained in:
Matt Hill
2023-03-15 14:59:07 -06:00
parent 85959db110
commit 41eb31a2ca
3 changed files with 340 additions and 213 deletions

View File

@@ -17,7 +17,7 @@ export enum PatchOp {
REPLACE = 'replace',
}
export interface Bootstrapper<T> {
export interface Bootstrapper<T extends Record<string, any>> {
init(): DBCache<T>
update(cache: DBCache<T>): void
}