Interface ResourceLink<T>

ResourceLink is a reference object to another entity outside of the current space/environment

interface ResourceLink<T> {
    sys: {
        linkType: T;
        type: "ResourceLink";
        urn: string;
    };
}

Type Parameters

  • T extends string

Properties

Properties

sys: {
    linkType: T;
    type: "ResourceLink";
    urn: string;
}