lavva.exalushome
Version:
Library implementing communication and abstraction layers for ExalusHome system
14 lines (13 loc) • 543 B
TypeScript
import { IDIService } from "../IDIService";
export interface IAppLocalesService extends IDIService {
GetCurrentLocalesAsync(): Promise<string[] | undefined>;
SetCurrentLocalesAsync(locale: string): Promise<void>;
IsAvailable(): boolean;
}
export declare class AppLocalesService implements IAppLocalesService {
static readonly ServiceName: string;
GetCurrentLocalesAsync(): Promise<string[] | undefined>;
SetCurrentLocalesAsync(locale: string): Promise<void>;
IsAvailable(): boolean;
GetServiceName(): string;
}