UNPKG

@virtualstate/examples

Version:
11 lines 370 B
import { VNode } from "@virtualstate/fringe"; export interface VNodeSource extends VNode { source: unknown; } export interface ReadOptions<T extends VNodeSource> { domain: T[]; visit?: T[]; final?: boolean; } export declare function read<T extends VNodeSource>(options: ReadOptions<T>, state?: VNode): AsyncIterable<T>; //# sourceMappingURL=read.d.ts.map