UNPKG

320 BTypeScriptView Raw
1export declare enum Authentications {
2 OAuth2 = "OAUTH2",
3 OAuth1 = "OAUTH1",
4 Basic = "BASIC",
5 ApiKey = "APIKEY",
6 NoAuth = "NONE",
7 Custom = "CUSTOM"
8}
9export declare type TAuthentications = Record<Authentications, {
10 name: string;
11 value: Authentications;
12}>;
13export default Authentications;