mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 17:31:22 +00:00
12 lines
148 B
TypeScript
12 lines
148 B
TypeScript
export type Link = {
|
|
self: Array<{
|
|
href: string;
|
|
}>;
|
|
collection: Array<{
|
|
href: string;
|
|
}>;
|
|
up: Array<{
|
|
href: string;
|
|
}>;
|
|
};
|