dt-common-device
Version:
A secure and robust device management library for IoT applications
9 lines (8 loc) • 403 B
TypeScript
export declare class LocalPropertyService {
private readonly propertyRepository;
constructor();
getPropertyPreferences(propertyId: string): Promise<import("../interfaces").IPropertySettings | null>;
getProperty(propertyId: string): Promise<import("../interfaces").IProperty | null>;
getPropertyTimeZone(propertyId: string): Promise<string>;
getAllProperties(): Promise<any[]>;
}