2024-12-26 21:35:53 +01:00

11 lines
167 B
TypeScript

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