@wbg-mde/model
Version:
Metadata Editor Model Definitions
17 lines (16 loc) • 537 B
TypeScript
import { ProjectMetadata } 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 TimeSeries extends ProjectMetadata {
constructor(metadata: any);
datasets: {
fileDscr: FileDescription[];
};
variables: {
[key: string]: Variable[];
};
varStat: {
[key: string]: VariableStatistics[];
};
}