mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
24 lines
534 B
TypeScript
24 lines
534 B
TypeScript
declare module 'reference-library' {
|
|
import type * as React from 'react'
|
|
|
|
export function Container(props: {
|
|
children?: React.ReactNode
|
|
}): React.ReactNode
|
|
}
|
|
|
|
declare module 'reference-library/client' {
|
|
import type * as React from 'react'
|
|
|
|
export function Container(props: {
|
|
children?: React.ReactNode
|
|
}): React.ReactNode
|
|
}
|
|
|
|
declare module 'reference-library/missing-react-server' {
|
|
import type * as React from 'react'
|
|
|
|
export function Container(props: {
|
|
children?: React.ReactNode
|
|
}): React.ReactNode
|
|
}
|