tapbundle/ts/tapbundle.classes.tapwrap.ts

15 lines
244 B
TypeScript
Raw Normal View History

2017-07-05 15:57:28 +00:00
import * as plugins from './tapbundle.plugins'
export interface ITapWrapFunction {
(): Promise<any>
}
export class TapWrap {
asyncFunction: ITapWrapFunction
constructor(functionArg: ITapWrapFunction) {
// nothing here
}
}