@wbg-mde/model
Version:
Metadata Editor Model Definitions
40 lines (39 loc) • 1.23 kB
TypeScript
export declare class DatasetsSummary {
name: string;
type: string;
varQnty: number;
caseQnty: number;
filePath: string;
ID?: string;
constructor(name: string, type: string, varQnty: number, caseQnty: number, filePath: string, ID?: string);
}
export declare class SummaryFrequency {
value: number;
label: string;
count: number;
percentage: any;
constructor(value: number, label: string, count: number, percentage: any);
}
export declare class StatisticsControls {
includeFrequencies: boolean;
includeListMissingAtEnd: boolean;
includeValid: boolean;
includeMin: boolean;
includeMax: boolean;
includeMean: boolean;
includeStdDev: boolean;
constructor(includeFrequencies: boolean, includeListMissingAtEnd: boolean, includeValid: boolean, includeMin: boolean, includeMax: boolean, includeMean: boolean, includeStdDev: boolean);
}
export declare enum TreeNodeTypes {
allDataset = 1,
singleDataset = 2
}
export declare class DatalistButtons {
import: boolean;
export: boolean;
delete: boolean;
exportDict: boolean;
showInfo: boolean;
attatch: boolean;
constructor(state: any);
}