Skip to content

Commit d32a0a7

Browse files
committed
fix(di): expose IRegistryComponents type
1 parent 1622b63 commit d32a0a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/di/di.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const registryHocMark = 'RegistryHoc'
105105
export type HOC<T> = (WrappedComponent: ComponentType) => ComponentType<T>
106106

107107
type IRegistryEntity<T = any> = ComponentType<T> | IRegistryHOC<T>
108-
type IRegistryComponents = Record<string, IRegistryEntity>
108+
export type IRegistryComponents = Record<string, IRegistryEntity>
109109

110110
interface IRegistryHOC<T> extends React.FC<T> {
111111
$symbol: typeof registryHocMark

0 commit comments

Comments
 (0)