File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3470,7 +3470,9 @@ interface ChildNode {
34703470}
34713471
34723472interface Clipboard extends EventTarget {
3473+ read(): Promise<ClipboardItems>;
34733474 readText(): Promise<string>;
3475+ write(data: ClipboardItems): Promise<void>;
34743476 writeText(data: string): Promise<void>;
34753477}
34763478
@@ -18444,6 +18446,7 @@ type COSEAlgorithmIdentifier = number;
1844418446type CanvasImageSource = HTMLOrSVGImageElement | HTMLVideoElement | HTMLCanvasElement | ImageBitmap;
1844518447type ClipboardItemData = Promise<ClipboardItemDataType>;
1844618448type ClipboardItemDataType = string | Blob;
18449+ type ClipboardItems = ClipboardItem[];
1844718450type ConstrainBoolean = boolean | ConstrainBooleanParameters;
1844818451type ConstrainDOMString = string | string[] | ConstrainDOMStringParameters;
1844918452type ConstrainDouble = number | ConstrainDoubleRange;
Original file line number Diff line number Diff line change 125125 },
126126 "interfaces" : {
127127 "interface" : {
128- "Clipboard" : {
129- "methods" : {
130- "method" : {
131- "read" : null ,
132- "write" : null
133- }
134- }
135- },
136128 "CSSRule" : {
137129 "constants" : {
138130 "constant" : {
You can’t perform that action at this time.
0 commit comments