UNPKG

@koalarx/ui

Version:

Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.

16 lines (15 loc) 552 B
import { KoalaOauth2ConfigInterface } from "../services/openid/koala-oauth2-config.interface"; export interface KoalaEnvironmentOAuthInterface extends KoalaOauth2ConfigInterface { name: string; } export interface KoalaEnvironmentInterface { production: boolean; storageTokenName?: string; storageOAuthTypeName?: string; endpointApi?: string; authenticator?: string; oauthConfig?: KoalaEnvironmentOAuthInterface[]; } export declare class KoalaEnvironment { static environment: KoalaEnvironmentInterface; }