-
Notifications
You must be signed in to change notification settings - Fork 0
Custom Types
Alexandre Moreau-Lemay edited this page Aug 22, 2022
·
1 revision
Helper types/aliases
import { type AnyStore } from "https://deno.land/x/fresh_store@v1.0.1/mod.ts";Convenience type for a Store of any type.
type AnyStore = Store<any>;import { type Pointer } from "https://deno.land/x/fresh_store@v1.0.1/mod.ts";Convenience type alias for a pointer.
type Pointer = string;