UNPKG

claire-framework

Version:

- được viết bằng TypeScript - hỗ trợ websocket và HTTP request - hỗ trợ CLI để generate base project (claire-cli)

10 lines 378 B
import { IQuery } from "./IQuery"; import { AbstractModel } from "./AbstractModel"; export interface IQueryProvider { /** * Use a model to provide the query interface for this model. * @param model the model to get query interface */ use<T extends AbstractModel>(model: new (...args: any[]) => T): IQuery<T>; } //# sourceMappingURL=IQueryProvider.d.ts.map