export interface ReadableDevice { read(): Promise; } export interface WritableDevice { write(value: T): Promise; }