7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
![]() |
import type { DeviceType } from "@/utils/enum"
|
||
|
|
||
|
export type DeviceItem = {
|
||
|
id: number
|
||
|
deviceName: string,
|
||
|
deviceType: DeviceType
|
||
|
}
|