17 lines
606 B
TypeScript
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';
|