- Add singleQuote: true to deno.json fmt configuration - Reformat all files with single quotes using deno fmt
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
/**
|
|
* 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';
|
|
|
|
// Re-export the SNMP manager class
|
|
export { NupstSnmp } from './manager.ts';
|