Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VNode

interface VNode <P = {}> {
endTime?: number;
key: Key;
props: P & {
children: ComponentChildren;
}
;
ref?: Ref<any> | null;
startTime?: number;
type: ComponentType<P> | string;
}

§Type Parameters

§
P = {}
[src]

§Properties

§
endTime?: number
[src]

The time that the rendering of this vnode was completed. Will only be set when the devtools are attached. Default value: -1

§
props: P & {
children: ComponentChildren;
}
[src]
§
ref?: Ref<any> | null
[src]

ref is not guaranteed by React.ReactElement, for compatibility reasons with popular react libs we define it as optional too

§
startTime?: number
[src]

The time this vnode started rendering. Will only be set when the devtools are attached. Default value: 0

§
type: ComponentType<P> | string
[src]