UNPKG

@stryke/helpers

Version:

A package containing miscellaneous helper functions that are used across many different Storm Software projects.

13 lines (12 loc) 294 B
/** * An error class representing an aborted operation. */ export declare class AbortError extends Error { constructor(message?: string); } /** * An error class representing an timeout operation. */ export declare class TimeoutError extends Error { constructor(message?: string); }