import { RangeValue } from "./range"; import { AgentPubKey, EntryHash, Timestamp } from "@holochain/client"; import { DimensionEh } from "./dimension"; import { DataSet } from "./method"; import { Option } from "./utils"; import { ResourceEh } from "./resourceDef"; export interface CreateAssessmentInput { value: RangeValue; dimension_eh: EntryHash; resource_eh: EntryHash; resource_def_eh: EntryHash; maybe_input_dataset: Option; } export type Assessment = CreateAssessmentInput & { author: AgentPubKey; timestamp: Timestamp; }; export interface GetAssessmentsForResourceInput { resource_ehs?: ResourceEh[]; dimension_ehs?: DimensionEh[]; } export type AssessmentEh = EntryHash; //# sourceMappingURL=assessment.d.ts.map