5 lines
111 B
TypeScript
5 lines
111 B
TypeScript
import "react"
|
|
declare module "react" {
|
|
export function createContext<Value>(): Context<Value | undefined>
|
|
}
|