export default interface Driver
{ init: (parameters: P) => Promise; cleanup?: () => Promise; parameters: P; resource?: R; }