tapbundle/ts/tapbundle.classes.tapwrap.ts
2017-07-05 17:57:28 +02:00

15 lines
244 B
TypeScript

import * as plugins from './tapbundle.plugins'
export interface ITapWrapFunction {
(): Promise<any>
}
export class TapWrap {
asyncFunction: ITapWrapFunction
constructor(functionArg: ITapWrapFunction) {
// nothing here
}
}