12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.NodeFileSystemHandle = void 0;
- class NodeFileSystemHandle {
- constructor(kind, name) {
- this.kind = kind;
- this.name = name;
- }
-
- isSameEntry(fileSystemHandle) {
- return (this.constructor === fileSystemHandle.constructor && this.__path === fileSystemHandle.__path);
- }
-
- queryPermission(fileSystemHandlePermissionDescriptor) {
- throw new Error('Not implemented');
- }
-
- async remove({ recursive } = { recursive: false }) {
- throw new Error('Not implemented');
- }
-
- requestPermission(fileSystemHandlePermissionDescriptor) {
- throw new Error('Not implemented');
- }
- }
- exports.NodeFileSystemHandle = NodeFileSystemHandle;
|