import { DFWScheme } from "../.."; import DFWInstance from "../system/DFWInstance"; export default abstract class DFWModule { protected DFWInstance: DFWInstance; constructor(instance: DFWInstance); /** * touches the connection data */ abstract touchAsync(dfw: DFWScheme): Promise; }