tapbundle/ts/tapbundle.classes.tapwrap.ts
2022-03-14 11:22:17 +01:00

14 lines
279 B
TypeScript

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