@brontosaurus/db
Version:
:ocean: Schema for brontosaurus
9 lines (8 loc) • 333 B
TypeScript
import { ObjectID } from "bson";
import { IApplicationModel } from "../model/application";
export declare class ApplicationCacheAgent {
static create(): ApplicationCacheAgent;
private readonly _applicationMap;
private constructor();
getApplication(id: ObjectID | string): Promise<IApplicationModel | null>;
}