pull/13674/head
Dominic Gannaway 2 years ago
parent b11367eee6
commit d6b21f4f6d

@ -333,16 +333,18 @@ export type MountOptions<Props extends Record<string, any> = Record<string, any>
* Used to control transition playback on initial render. The default value is `true` to run transitions. * Used to control transition playback on initial render. The default value is `true` to run transitions.
*/ */
intro?: boolean; intro?: boolean;
} & ({} extends Props ? { } & ({} extends Props
/** ? {
* Component properties. /**
*/ * Component properties.
props?: Props; */
} : { props?: Props;
/** }
* Component properties. : {
*/ /**
props: Props; * Component properties.
}) */
props: Props;
});
export * from './index-client.js'; export * from './index-client.js';

Loading…
Cancel
Save