query-engine.ts

Non-parsing query-engine on top of key-value storage
git clone git://git.finwo.net/lib/query-engine.ts
Log | Files | Refs | README | LICENSE

constructable.ts (58B)


      1 export type Constructable<T> = new (...args: any[]) => T;