UNPKG

ngx-indexed-database

Version:

<div align="center"> <img src="https://w3c.github.io/IndexedDB/logo-db.svg" width="120"/> </div> <h1 align="center">ngx-indexed-database</h1>

12 lines (11 loc) 341 B
export declare type StoresResetOptions = StoreResetOptionExclude | StoreResetOptionOnly; interface StoreResetOptionExclude { only?: never; exclude: string[]; } interface StoreResetOptionOnly { only: string[]; exclude?: never; } export declare const isExcludeConfig: (data: any) => data is StoreResetOptionExclude; export {};