synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
18 lines (17 loc) • 368 B
TypeScript
export declare type Annotations = {
id: string;
etag: string;
annotations: {
[key: string]: AnnotationsValue;
};
};
export declare type AnnotationsValue = {
type: AnnotationsValueType;
value: string[] | number[];
};
export declare enum AnnotationsValueType {
'STRING' = 0,
'DOUBLE' = 1,
'LONG' = 2,
'TIMESTAMP_MS' = 3
}