Skip to content

Commit 9e2179c

Browse files
committed
fix(schema): type exports
1 parent 08734f7 commit 9e2179c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/schema/src/schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface BaseMeta extends Omit<_Meta, 'content'> {
5555

5656
export type EntryAugmentation = undefined | Record<string, any>
5757

58-
export { DataKeys, DefinedValueOrEmptyObject }
58+
export type { DataKeys, DefinedValueOrEmptyObject }
5959

6060
export type Title = string
6161
export type TitleTemplate = string | null | ((title?: string) => string)
@@ -137,4 +137,4 @@ export interface Head<E extends MergeHead = SchemaAugmentations> {
137137
bodyAttrs?: BodyAttributes<E['bodyAttrs']>
138138
}
139139

140-
export { MergeHead } from '@zhead/schema'
140+
export type { MergeHead } from '@zhead/schema'

0 commit comments

Comments
 (0)