5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
|
/// <reference types="react" />
|
||
|
export interface FlightResponseRef {
|
||
|
current: Promise<JSX.Element> | null;
|
||
|
}
|