UNPKG

ccs-logging-addon

Version:

CCS AddOn for logging states, errors and more

24 lines (21 loc) 545 B
import { sndMsgConsole, sndMsgApi, sndMsgSlack } from './functions'; import * as ife from './interface'; import { authFields } from './interface'; const loggingAddon = { name: 'logging', name_friendly: 'Logging library', version: '1.0.7', sub_type: 'logging', map_version: '0.0.0', type: 'tooling', auth_fields: authFields, init() { return { sndMsgConsole, sndMsgApi, sndMsgSlack }; } }; export type { ife }; export default loggingAddon;