UNPKG

my-test123

Version:
44 lines (43 loc) 861 B
export declare class Link { id: string; type: string; attributes: { 'version': Number; }; relationships: { 'link_type': { 'data': { 'id': string; 'type': string; }; }; 'source': { 'data': { 'id': string; 'type': string; }; }; 'target': { 'data': { 'id': string; 'type': string; }; }; }; relationalData?: RelationalData; } export declare class RelationalData { source?: { title: string; id: string; number: string; state: string; }; target?: { title: string; id: string; number: string; state: string; }; linkType?: string; }