Entry overview
Added in v1.0.0
Table of contents
utils
BrowserEntry (interface)
Signature
export interface BrowserEntry {
readonly _tag: "Browser"
readonly template: Template
readonly content: DocumentFragment
}
Added in v1.0.0
Entry (type alias)
Signature
export type Entry = BrowserEntry | ServerEntry
Added in v1.0.0
ServerEntry (interface)
Signature
export interface ServerEntry {
readonly _tag: "Server"
readonly template: Template
readonly chunks: ReadonlyArray<HtmlChunk>
}
Added in v1.0.0