UNPKG

ionic-database-builder

Version:

Extended library from database-builder to assist in creating and maintaining SQL commands. Allowing integrate execute commands with SQLite ('@ionic-native/sqlite'), Web Sql, etc. Through the interface injection 'DatabaseCreatorContract' returning an imple

6 lines (5 loc) 193 B
import { DatabaseObject } from 'database-builder'; import { Observable } from 'rxjs'; export interface DatabaseResettableContract { reset(database: DatabaseObject): Observable<any>; }