| Index: client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| diff --git a/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart b/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| index 6464dabf27fa266198ebb5fa32f0b0cad8d2de59..fbd98ea5778b1f1716f67c37017b529fa503583f 100644
|
| --- a/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| +++ b/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| @@ -17,9 +17,11 @@ class ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboar
|
|
|
| FileList get files() { return LevelDom.wrapFileList(_ptr.files); }
|
|
|
| - DataTransferItems get items() { return LevelDom.wrapDataTransferItems(_ptr.items); }
|
| + DataTransferItemList get items() { return LevelDom.wrapDataTransferItemList(_ptr.items); }
|
|
|
| - void clearData([String type = null]) {
|
| + List get types() { return _ptr.types; }
|
| +
|
| + void clearData([String type]) {
|
| if (type === null) {
|
| _ptr.clearData();
|
| return;
|
|
|