Interface Link<T>

Link definition of a specific link type

interface Link<T> {
    id: string;
    linkType: T;
    type: "Link";
}

Type Parameters

Properties

Properties

id: string
linkType: T
type: "Link"