tapbundle/ts/tapbundle.classes.tapwrap.ts

14 lines
279 B
TypeScript
Raw Normal View History

2022-03-14 10:22:17 +00:00
import * as plugins from './tapbundle.plugins.js';
2017-07-05 15:57:28 +00:00
2020-07-11 16:07:30 +00:00
export interface ITapWrapOptions {
before: () => Promise<any>;
after: () => {};
2017-07-05 15:57:28 +00:00
}
export class TapWrap {
2020-07-11 16:07:30 +00:00
public options: ITapWrapOptions;
constructor(optionsArg: ITapWrapOptions) {
this.options = optionsArg;
2017-07-05 15:57:28 +00:00
}
}