mirror of
https://github.com/vercel/commerce.git
synced 2025-07-10 06:41:20 +00:00
11 lines
167 B
TypeScript
11 lines
167 B
TypeScript
export type Link = {
|
|
self: Array<{
|
|
href: string;
|
|
}>;
|
|
collection: Array<{
|
|
href: string;
|
|
}>;
|
|
up: Array<{
|
|
href: string;
|
|
}>;
|
|
}; |