@remote-ui/types
Advanced tools
Comparing version 0.0.7 to 0.0.8
export declare type RemoteComponentType<Type extends string, Props = {}, AllowedChildren extends RemoteComponentType<string, any> | boolean = true> = Type & { | ||
readonly type?: Type; | ||
readonly props?: Props; | ||
@@ -3,0 +4,0 @@ readonly children?: AllowedChildren; |
{ | ||
"name": "@remote-ui/types", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"publishConfig": { | ||
@@ -9,3 +9,3 @@ "access": "public", | ||
"license": "MIT", | ||
"gitHead": "dd86b9d12c0998b78729e826c820d79bc7d764c2" | ||
"gitHead": "ae6679947d5d9921c9b9a39e9ba5a2245485bd00" | ||
} |
@@ -9,3 +9,7 @@ export type RemoteComponentType< | ||
// from the object later. | ||
Type & {readonly props?: Props; readonly children?: AllowedChildren}; | ||
Type & { | ||
readonly type?: Type; | ||
readonly props?: Props; | ||
readonly children?: AllowedChildren; | ||
}; | ||
@@ -12,0 +16,0 @@ export type IdentifierForRemoteComponent<T> = T extends RemoteComponentType< |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
169295
62