Skip to content

Commit 41c17a0

Browse files
committed
wip
1 parent a00d35f commit 41c17a0

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
// shared
2+
export { SignalsRuntime } from './shared/signals-runtime'
3+
4+
// web
15
export * from './web/web-signals-types'
26
export * from './shared/shared-types'
3-
export { SignalsRuntime } from './shared/signals-runtime'
4-
// there's not really a good reason to use these in an npm package yet. but they're here for completeness.
7+
export * as WebConstants from './web/web-constants'
8+
9+
// mobile
510
export * as Mobile from './mobile/mobile-signals-types'
11+
export * as MobileConstants from './mobile/mobile-constants'

packages/signals/signals-runtime/src/mobile/index.mobile-editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ export const signals: Signals = new SignalsRuntime<Signal>()
1010
*/
1111
export * from './mobile-signals-types'
1212
export * from '../shared/shared-types'
13-
export * from './mobile-enums'
13+
export * from './mobile-constants'

packages/signals/signals-runtime/src/web/index.web-editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ export const signals: Signals = new SignalsRuntime<Signal>()
1111
*/
1212
export * from './web-signals-types'
1313
export * from '../shared/shared-types'
14-
export * from './web-enums'
14+
export * from './web-constants'

0 commit comments

Comments
 (0)