import * as plugins from './tapbundle.plugins.js'; export interface ITapWrapOptions { before: () => Promise; after: () => {}; } export class TapWrap { public options: ITapWrapOptions; constructor(optionsArg: ITapWrapOptions) { this.options = optionsArg; } }