lavva.exalushome
Version:
Library implementing communication and abstraction layers for ExalusHome system
20 lines (19 loc) • 443 B
TypeScript
export interface IPicture {
get Guid(): string;
get OwnerGuid(): string;
get OwnerIdentity(): string;
get Base64Image(): string;
get ImageType(): ImageType;
get DateTime(): string;
}
export declare enum ImageType {
Device = 1,
Person = 2,
DevicesGroups = 3
}
export interface IPictureInfo {
get Guid(): string;
get DateTime(): string;
get OwnerGuid(): string;
get OwnerIdentity(): string;
}