We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
parseLine
1 parent 8a804f5 commit 9a4de9dCopy full SHA for 9a4de9d
src/main/ts/index.ts
@@ -1,2 +1,2 @@
1
export type * from './ingrid.js'
2
-export { parse } from './ingrid.js'
+export { parse, parseLine } from './ingrid.js'
src/test/ts/index.test.ts
@@ -1,9 +1,10 @@
import * as assert from 'node:assert'
import { describe, it } from 'node:test'
3
-import { parse } from '../../main/ts/index.ts'
+import { parse, parseLine } from '../../main/ts/index.ts'
4
5
describe('index', () => {
6
it('has proper exports', () => {
7
assert.equal(typeof parse, 'function')
8
+ assert.equal(typeof parseLine, 'function')
9
})
10
0 commit comments