UNPKG

@cause-911/core

Version:

Run `npm install @cause-911/core --save` to add this library to your project

27 lines (26 loc) 750 B
import { CoreModuleOptions } from '../models/core-module-options'; export declare class Configuration { private useCharset; private useAuthorizationType; private useAccessToken; private useRefreshToken; private useCSRFToken; private useLocale; private useLanguages; libraries: string[]; loginURL: string; refreshLoginURL: string; allowRefreshToken: boolean; apiUrl: string; nbRetryOnNetworkError: number; contentSecurityPolicyActivated: boolean; constructor(options: CoreModuleOptions); locale: string; languages: string[]; charset: string; authorizationType: string; refreshToken: string; accessToken: string; CSRFToken: string; private setDefaultLocale; }