Interface FnCall<T>

interface FnCall<T> {
    args: Term<any>[];
    fn?: Func<T>;
    id: string;
    info?: string;
    tag: Tag;
    type: T;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

args: Term<any>[]
fn?: Func<T>
id: string
info?: string
tag: Tag
type: T

Generated using TypeDoc