14 lines
279 B
TypeScript
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;
|
|
}
|
|
}
|