bitcitawebfrontlib-ibsalut
Version:
Angular CLI project used by other Angular projects in the bitcita web project.<br />
17 lines (16 loc) • 538 B
TypeScript
export declare class Idioma {
value: string;
label: string;
private static seleccionado;
static ca: Idioma;
static es: Idioma;
constructor(value: string, label: string);
static set(idioma: Idioma): void;
static setCodigo(idioma: string): void;
static get(): Idioma;
static getCodigo(): string;
static esCatalanSeleccionado(): boolean;
static esEspanyolSeleccionado(): boolean;
static esCatalan(idioma: string): boolean;
static esEspanyol(idioma: string): boolean;
}