From f420e7d09e1af1925d1756e9c6c59367002054ee Mon Sep 17 00:00:00 2001 From: bratanon Date: Mon, 11 Dec 2023 00:48:35 +0100 Subject: [PATCH] Export DeviceCategory --- src/index.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 65c9891..f741668 100644 --- a/src/index.ts +++ b/src/index.ts @@ -40,7 +40,17 @@ export { default as Client } from './Client'; export * from './Const'; export { default as ContactId } from './ContactId'; export { default as Device } from './Device'; -export { default as DeviceCategory } from './DeviceCategory'; +export { + default as DeviceCategory, + DC_ALL, + DC_ALL_LOOKUP, + DC_BASEUNIT, + DC_BURGLAR, + DC_CONTROLLER, + DC_FIRE, + DC_MEDICAL, + DC_SPECIAL, +} from './DeviceCategory'; export { default as DeviceEvent } from './DeviceEvent'; export * from './Enums'; export { default as PropertyChangedInfo } from './PropertyChangedInfo';