Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 7af4f9a

Browse files
committed
fix(src/core*): only unions can be named export
1 parent 673d701 commit 7af4f9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/cssx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ class cssx {
2828
}
2929

3030
export default cssx;
31-
export { create, set, global, root, union };
31+
export { union };

src/core/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import cssx from './cssx';
22
export default cssx;
3-
export * from './cssx';
3+
export { union } from './cssx';
44
export * from './media';

0 commit comments

Comments
 (0)