Files
ndm-web-client/src/apis/model/biz/entity/index.ts
2025-11-22 01:46:16 +08:00

17 lines
606 B
TypeScript

import type { NdmSecurityBox, NdmSwitch } from './other';
import type { NdmNvr } from './storage';
import type { NdmCamera, NdmDecoder, NdmKeyboard, NdmMediaServer, NdmVideoServer } from './video';
export type NdmDeviceVO = NdmCamera | NdmDecoder | NdmKeyboard | NdmMediaServer | NdmNvr | NdmSecurityBox | NdmSwitch | NdmVideoServer;
export type NdmDeviceResultVO = Partial<NdmDeviceVO>;
export type NdmServerVO = NdmMediaServer | NdmVideoServer;
export type NdmServerResultVO = Partial<NdmServerVO>;
export * from './log';
export * from './other';
export * from './storage';
export * from './video';