UNPKG

di-tory

Version:

Compose applications with dependency injection

11 lines (10 loc) 272 B
export declare enum StackErrorType { Empty = 0, Exists = 1 } export declare class StackError extends Error { static messages: Record<StackErrorType, string>; static Empty: StackError; static Exists: StackError; constructor(type: StackErrorType); }