refactor: mark field as internal

This commit is contained in:
julien huang 2023-08-25 21:24:09 +02:00
parent bdd3b3a209
commit 197c932141

View File

@ -20,6 +20,7 @@ export interface Component {
* This prevent the component to be transformed with a `createClientOnly()` client-side if the mode is `client`
* An example is the `<NuxtClientFallback>` component which handles it's hydration client-side
*/
/** @internal */
noClientOnlyTransform?: boolean
}