Interface TaggedFn1<A, T>

interface TaggedFn1<A, T> {
    args: [Sym<A>];
    deps: Func<any>[];
    id: string;
    scope: Scope;
    tag: Tag;
    type: T;
    (a): FnCall<T>;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

args: [Sym<A>]
deps: Func<any>[]
id: string
scope: Scope
tag: Tag
type: T

Generated using TypeDoc