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

FetcherWithComponents

type FetcherWithComponents<TData> = Fetcher<TData> & {
Form: ReturnType<createFetcherForm>;
submit: (target: SubmitTarget, options?: Omit<SubmitOptions, "replace">) => void;
load: (href: string) => void;
}
;

§Type Parameters

§
TData
[src]

§Type

§
Fetcher<TData> & {
Form: ReturnType<createFetcherForm>;
submit: (target: SubmitTarget, options?: Omit<SubmitOptions, "replace">) => void;
load: (href: string) => void;
}
[src]