1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
=== /node_modules/@fullcalendar/react/index.d.ts ===
import * as react from 'react';
>react : typeof react
declare global {
>global : typeof global
namespace FullCalendarVDom {
>FullCalendarVDom : typeof FullCalendarVDom
export import VNode = react.ReactNode;
>VNode : any
>react : typeof react
>ReactNode : any
}
}
export default class FullCalendar {
>FullCalendar : FullCalendar
}
=== /node_modules/@fullcalendar/core/index.d.ts ===
import * as preact from 'preact';
>preact : typeof preact
declare global {
>global : any
namespace FullCalendarVDom {
type VNode = preact.VNode<any>;
>VNode : any
>preact : any
}
}
export type EventInput = any;
>EventInput : any
=== /node_modules/@types/react/index.d.ts ===
export = React;
>React : typeof React
export as namespace React;
>React : typeof React
declare namespace React {
>React : typeof React
type ReactNode = any;
>ReactNode : any
function useMemo<T>(factory: () => T, deps: undefined): T;
>useMemo : <T>(factory: () => T, deps: undefined) => T
>factory : () => T
>deps : undefined
}
=== /node_modules/preact/index.d.ts ===
export as namespace preact;
>preact : typeof import("/node_modules/preact/index")
export interface VNode<P = {}> {}
=== /index.tsx ===
import FullCalendar from "@fullcalendar/react";
>FullCalendar : typeof FullCalendar
import { EventInput } from "@fullcalendar/core";
>EventInput : any
|