mirror of
https://github.com/withastro/astro.git
synced 2025-07-31 16:07:34 +08:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
declare module 'astro:react:opts' {
|
|
type Options = Pick<
|
|
import('./src/index.js').ReactIntegrationOptions,
|
|
'experimentalDisableStreaming' | 'experimentalReactChildren'
|
|
>;
|
|
const options: Options;
|
|
export = options;
|
|
}
|