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

Sheet

interface Sheet <T = unknown> {
init?: SheetInit;
insert: (rule: string, index: number) => void;
readonly target: T;
}

§Type Parameters

§
T = unknown
[src]

§Properties

§
insert: (rule: string, index: number) => void
[src]
§
readonly target: T
[src]