@codaglobal/ng-jwt-authentication
Version:
<a> <br> <h1 align="center">ng-jwt-authentication</h1> </a>
21 lines (20 loc) • 478 B
TypeScript
export declare enum METHODS {
GET = "GET",
POST = "POST",
PATCH = "PATCH",
DELETE = "DELETE",
PUT = "PUT",
}
export declare class Config {
refreshUrl: string;
headerKeyName: string;
accessTokenKey: string;
refreshTokenKey: string;
expiresInKey: string;
errorStatusCode: number;
authorizationSchema: string;
contentTypeKeyName: string;
contentType: string;
jwtResponse: string;
}
export declare const DEFAULTS: Config;