UNPKG

@nfdi4plants/swate-components

Version:

Customizable React components for ontology annotation, based on Swate and the ARC.

14 lines 1.42 kB
import { FSharpList } from '@fable-org/fable-library-js/List.js'; import { Option } from '@fable-org/fable-library-js/Option.js'; import { ArcRun } from '../../ARCtrl.Core.3.0.0-beta.12/ArcTypes.fs.js'; import { Remark, Comment$ } from '../../ARCtrl.Core.3.0.0-beta.12/Comment.fs.js'; import { SparseTable } from './SparseTable.fs.js'; import { int32 } from '@fable-org/fable-library-js/Int32.js'; import { IEnumerator } from '@fable-org/fable-library-js/Util.js'; export declare const labels: FSharpList<string>; export declare function fromString(identifier: Option<string>, title: Option<string>, description: Option<string>, workflowIdentifiers: Option<string>, measurementType: Option<string>, measurementTypeTermSourceREF: Option<string>, measurementTypeTermAccessionNumber: Option<string>, technologyType: Option<string>, technologyTypeTermSourceREF: Option<string>, technologyTypeTermAccessionNumber: Option<string>, technologyPlatform: Option<string>, fileName: Option<string>, comments: Comment$[]): ArcRun; export declare function fromSparseTable(matrix: SparseTable): ArcRun; export declare function toSparseTable(run: ArcRun): SparseTable; export declare function fromRows(lineNumber: int32, rows: IEnumerator<Iterable<[int32, string]>>): [Option<string>, int32, FSharpList<Remark>, ArcRun]; export declare function toRows(run: ArcRun): Iterable<Iterable<[int32, string]>>; //# sourceMappingURL=Run.fs.d.ts.map