Files
nupst/ts/snmp/index.ts

11 lines
286 B
TypeScript
Raw Normal View History

2025-03-25 09:06:23 +00:00
/**
* Main module entry point for SNMP functionality
* Re-exports public types and classes
*/
// Re-export all public types
export type { IOidSet, ISnmpConfig, IUpsStatus, TUpsModel } from './types.ts';
2025-03-25 09:06:23 +00:00
// Re-export the SNMP manager class
export { NupstSnmp } from './manager.ts';