@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
10 lines (9 loc) • 375 B
TypeScript
import type { HttpErrorOptions } from './HttpError';
declare const BaseHttpError: import("./HttpError").HttpErrorClass<304>;
/**
* An error is thrown when a request conflicts with the current state of the server.
*/
export declare class NotModifiedHttpError extends BaseHttpError {
constructor(eTag?: string, message?: string, options?: HttpErrorOptions);
}
export {};