ccs-logging-addon
Version:
CCS AddOn for logging states, errors and more
13 lines (12 loc) • 355 B
TypeScript
import { sndMsgConsole, sndMsgApi, sndMsgSlack } from './functions';
declare const fedexWebAddon: {
name: string;
name_friendly: string;
version: string;
init(): {
sndMsgConsole: typeof sndMsgConsole;
sndMsgApi: typeof sndMsgApi;
sndMsgSlack: typeof sndMsgSlack;
};
};
export default fedexWebAddon;