-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.js
More file actions
30 lines (23 loc) · 772 Bytes
/
index.js
File metadata and controls
30 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @module
* @description This module is the entry point for the HED JavaScript library.
*/
export {
BidsDataset,
BidsTsvFile,
BidsJsonFile,
BidsSidecar,
BidsHedIssue,
buildBidsSchemas,
BidsFileAccessor,
BidsDirectoryAccessor,
BidsWebAccessor,
} from './src/bids'
export { IssueError, Issue } from './src/issues/issues'
export { parseTSV } from './src/bids/tsvParser'
// Export parser functions for HED string validation
export { Definition, DefinitionManager } from './src/parser/definitionManager'
export { parseStandaloneString, parseHedString, parseHedStrings } from './src/parser/parser'
// Export schema functions
export { getLocalSchemaVersions } from './src/schema/config'
export { buildSchemasFromVersion } from './src/schema/init'