@scefira/dfw-nodejs
Version:
16 lines (12 loc) • 379 B
text/typescript
import { DFWScheme } from "../..";
import DFWInstance from "../system/DFWInstance";
export default abstract class DFWModule{
protected DFWInstance:DFWInstance;
constructor(instance:DFWInstance){
this.DFWInstance = instance;
}
/**
* touches the connection data
*/
public abstract touchAsync(dfw:DFWScheme):Promise<any>;
}