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.
*/
intro?: boolean;
} & ({} extends Props ? {
/**
* Component properties.
*/
props?: Props;
} : {
/**
* Component properties.
*/
props: Props;
})
} & ({} extends Props
? {
/**
* Component properties.
*/
props?: Props;
}
: {
/**
* Component properties.
*/
props: Props;
});
export * from './index-client.js';

Loading…
Cancel
Save