tapbundle/ts/tapbundle.classes.tapwrap.ts
2020-07-11 16:07:30 +00:00

14 lines
276 B
TypeScript

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