2024-12-27 03:24:35 +01:00

12 lines
148 B
TypeScript

export type Link = {
self: Array<{
href: string;
}>;
collection: Array<{
href: string;
}>;
up: Array<{
href: string;
}>;
};