interface ClipboardMain {
    $readText(): Promise<string>;
    $writeText(value): Promise<void>;
}

Implemented by

Methods