- Created deno.json configuration - Updated all imports to use npm:net-snmp@3.20.0 - Changed all Node.js built-in imports to node: specifiers - Updated all .js extensions to .ts in imports - Created mod.ts as Deno entry point - Ready for Phase 3: CLI simplification
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
/**
|
|
* Main module entry point for SNMP functionality
|
|
* Re-exports public types and classes
|
|
*/
|
|
|
|
// Re-export all public types
|
|
export type { IUpsStatus, IOidSet, TUpsModel, ISnmpConfig } from './types.ts';
|
|
|
|
// Re-export the SNMP manager class
|
|
export { NupstSnmp } from './manager.ts'; |