@convergence/convergence
Version:
Convergence JavaScript Client
14 lines (13 loc) • 402 B
TypeScript
export declare class ModelResult {
readonly data: {
[key: string]: any;
};
readonly collectionId?: string;
readonly modelId?: string;
readonly created?: Date;
readonly modified?: Date;
readonly version?: number;
constructor(data: {
[key: string]: any;
}, collectionId?: string, modelId?: string, created?: Date, modified?: Date, version?: number);
}