Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added type to export #36

Merged
merged 9 commits into from
Dec 5, 2024
5 changes: 5 additions & 0 deletions .changeset/mighty-icons-sleep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rdfjs/types": patch
---

Export as Type for new transpilers
TessavWalstijn marked this conversation as resolved.
Show resolved Hide resolved
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="node" />

Check failure on line 1 in index.d.ts

View workflow job for this annotation

GitHub Actions / build

Only named exports may use 'export type'.

Check failure on line 1 in index.d.ts

View workflow job for this annotation

GitHub Actions / build

Only named exports may use 'export type'.

Check failure on line 1 in index.d.ts

View workflow job for this annotation

GitHub Actions / build

Only named exports may use 'export type'.

Check failure on line 1 in index.d.ts

View workflow job for this annotation

GitHub Actions / build

Only named exports may use 'export type'.

export * from './data-model';
export * from './stream';
export * from './dataset';
export * from './query';
export type * from './data-model';
export type * from './stream';
export type * from './dataset';
export type * from './query';
Loading