UNPKG

@toolchain-js/tjs-template-rollup-library

Version:

The example Toolchain CLI template for rollup bundled library.

11 lines (10 loc) 198 B
/** * Library name * * @constructor */ export const GenericLibrary = function () { return { doSomething: () => console.log('something'), // eslint-disable-line no-console }; };