|
|
|
@ -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';
|
|
|
|
|