mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-07 04:20:05 +00:00
8 lines
106 B
TypeScript
8 lines
106 B
TypeScript
export interface Link {
|
|
method: string;
|
|
rel: string;
|
|
href: string;
|
|
uri: string;
|
|
type: string;
|
|
}
|