tapbundle/ts/tapbundle.classes.tapwrap.ts

14 lines
279 B
TypeScript
Raw Permalink Normal View History

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