import { DeviceType } from "@texturehq/device"; import { Customer } from "./customer"; import { Site } from "./site"; export interface Device { deviceId: string; workspaceId: string; organizationId: string; manufacturer: Manufacturer; deviceModel: DeviceModel; deviceType: DeviceType; tags: string[]; customer?: Customer; site?: Site; updatedAt: string; createdAt: string; } interface Manufacturer { slug: string; displayName: string; } interface DeviceModel { slug: string; displayName: string; } export {}; //# sourceMappingURL=device.d.ts.map