UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

11 lines 268 B
import Stats from './stats.js'; export default class Entry extends Stats { constructor(name, mode, size, mtime) { super(mode, size, mtime); this.name = name; } toString() { return this.name; } } //# sourceMappingURL=entry.js.map