flexmonster-mongo-connector
Version:
Custom data source API implementation for MongoDB
15 lines (14 loc) • 447 B
TypeScript
export declare class SchemaValueObject {
uniqueName: string;
type: string;
caption: string;
folder: string;
aggregations: string[];
fieldStats: FieldStats;
constructor(uniqueName: string, type: string, caption: string, folder?: string, aggregations?: string[]);
static fromObject(obj: any): SchemaValueObject;
toObject(): any;
}
export interface FieldStats {
distinctMembersNumber?: number;
}