Skip to content

Commit

Permalink
Adds export
Browse files Browse the repository at this point in the history
  • Loading branch information
olih committed Jan 18, 2025
1 parent 9a7ca8f commit 6469ae1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/index.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { IncyWincySourceModel, sourceFileSchema } from './incy-wincy-model.js';

export type { IncyWincySourceModel };
export { sourceFileSchema}
6 changes: 6 additions & 0 deletions test/incy-wincy.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import {test} from 'node:test';
import {sourceFileSchema} from '../src/index.mjs';

test('ltodo', () => {
console.log(sourceFileSchema);
});

0 comments on commit 6469ae1

Please sign in to comment.