Skip to content

Commit a4778de

Browse files
committed
Remove unused bits
1 parent 9c712b5 commit a4778de

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

src/link-hints.ts

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { HalLink } from './hal';
2-
31
/**
42
* Link hints.
53
*
@@ -17,7 +15,7 @@ export interface LinkHints {
1715
* List of supported formats (used in for example GET responses
1816
* or PUT requests
1917
*/
20-
formats?: string[]
18+
formats?: string[];
2119

2220
/**
2321
* A list of media-types the target resource supports for
@@ -75,17 +73,3 @@ export interface LinkHints {
7573
status?: 'deprecated' | 'gone';
7674

7775
}
78-
79-
interface LinkHintAuthScheme {
80-
/**
81-
* A registered authenticaiton scheme such as 'Basic', 'Digest' or 'Bearer'.
82-
*/
83-
scheme: string;
84-
85-
/**
86-
* Realm information from the authentation scheme, similar to the "realm"
87-
* attribute on the WWW-Authentication header.
88-
*/
89-
realm?: string;
90-
91-
}

0 commit comments

Comments
 (0)