initial commit
This commit is contained in:
28
src/apis/models/device/index.ts
Normal file
28
src/apis/models/device/index.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { NdmSecurityBoxVO } from './other/ndm-security-box';
|
||||
import type { NdmSwitchVO } from './other/ndm-switch';
|
||||
import type { NdmNvrVO } from './storage/ndm-nvr';
|
||||
import type { NdmCameraVO } from './video/ndm-camera';
|
||||
import type { NdmDecoderVO } from './video/ndm-decoder';
|
||||
import type { NdmKeyboardVO } from './video/ndm-keyboard';
|
||||
import type { NdmMediaServerVO } from './video/ndm-media-server';
|
||||
import type { NdmVideoServerVO } from './video/ndm-video-server';
|
||||
|
||||
export * from './alarm/ndm-device-alarm-log';
|
||||
|
||||
export * from './log/ndm-icmp-log';
|
||||
export * from './log/ndm-snmp-log';
|
||||
|
||||
export * from './other/ndm-security-box';
|
||||
export * from './other/ndm-switch';
|
||||
|
||||
export * from './storage/ndm-nvr';
|
||||
|
||||
export * from './video/ndm-camera';
|
||||
export * from './video/ndm-decoder';
|
||||
export * from './video/ndm-keyboard';
|
||||
export * from './video/ndm-media-server';
|
||||
export * from './video/ndm-video-server';
|
||||
|
||||
export type NdmDeviceVO = NdmSecurityBoxVO | NdmSwitchVO | NdmNvrVO | NdmCameraVO | NdmDecoderVO | NdmKeyboardVO | NdmMediaServerVO | NdmVideoServerVO;
|
||||
|
||||
export type NdmServerVO = NdmMediaServerVO | NdmVideoServerVO;
|
||||
Reference in New Issue
Block a user