UNPKG

nephele

Version:

Highly customizable and extensible WebDAV server for Node.js and Express.

11 lines (9 loc) 226 B
export class ResourceNotModifiedError extends Error { etag?: string; lastModified?: Date; constructor(etag?: string, lastModified?: Date) { super(); this.etag = etag; this.lastModified = lastModified; } }