UNPKG

@ezdevlol/memfs

Version:

In-memory file-system with Node's fs API.

12 lines (11 loc) 253 B
/** * @see [MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PermissionStatus) */ export class NodePermissionStatus { name; state; constructor(name, state) { this.name = name; this.state = state; } }