Interface NavigatorClipboard

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

Methods