@wbg-mde/model
Version:
Metadata Editor Model Definitions
18 lines (17 loc) • 595 B
TypeScript
import { ProjectMetadata, ResourceGroup } from './project.metadata.model';
import { Variable } from './project.variable.model';
import { VariableStatistics } from './project.variable.statistics.model';
import { FileDescription } from './project.file.model';
export declare class Survey extends ProjectMetadata {
constructor(metadata: any);
datasets: {
fileDscr: FileDescription[];
};
variables: {
[key: string]: Variable[];
};
varStat: {
[key: string]: VariableStatistics[];
};
extResources: Array<ResourceGroup | any>;
}