0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-17 22:44:24 -05:00

[ci] format

This commit is contained in:
fightingcat 2024-04-04 17:58:30 +00:00 committed by astrobot-houston
parent 14f1d49a10
commit 9a1aee80a5

View file

@ -3,7 +3,10 @@ import type { AstroIntegration } from 'astro';
import { version as ReactVersion } from 'react-dom';
import type * as vite from 'vite';
export type ReactIntegrationOptions = Pick<ViteReactPluginOptions, 'include' | 'exclude' | 'babel'> & {
export type ReactIntegrationOptions = Pick<
ViteReactPluginOptions,
'include' | 'exclude' | 'babel'
> & {
experimentalReactChildren?: boolean;
};