import { ValidationError } from './definitions'; export declare const ERROR_INPUT_VALIDATION = "ERR_ICF_INPUT_VALIDATION"; export declare const ERROR_COMMAND_NOT_FOUND = "ERR_ICF_COMMAND_NOT_FOUND"; export declare const ERROR_IPC_MODULE_INACCESSIBLE = "ERR_ICF_IPC_MODULE_INACCESSIBLE"; export declare const ERROR_IPC_UNKNOWN_PROCEDURE = "ERR_ICF_IPC_UNKNOWN_PROCEDURE"; export declare abstract class BaseError extends Error { abstract readonly name: string; message: string; stack: string; code?: string; error?: Error; exitCode?: number; constructor(message: string); toString(): string; inspect(): string; } export declare class InputValidationError extends BaseError { errors: ValidationError[]; readonly name = "InputValidationError"; code: string; constructor(message: string, errors: ValidationError[]); } export declare class CommandNotFoundError extends BaseError { args: string[]; readonly name = "CommandNotFoundError"; code: string; constructor(message: string, args: string[]); } export declare class IPCError extends BaseError { readonly name = "IPCError"; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
lib | Folder | 0755 |
|
|
utils | Folder | 0755 |
|
|
CHANGELOG.md | File | 16.81 KB | 0644 |
|
LICENSE | File | 1.05 KB | 0644 |
|
README.md | File | 1014 B | 0644 |
|
definitions.d.ts | File | 6.95 KB | 0644 |
|
definitions.js | File | 77 B | 0644 |
|
errors.d.ts | File | 1.12 KB | 0644 |
|
errors.js | File | 1.93 KB | 0644 |
|
guards.d.ts | File | 1.01 KB | 0644 |
|
guards.js | File | 1.28 KB | 0644 |
|
index.d.ts | File | 80 B | 0644 |
|
index.js | File | 269 B | 0644 |
|
package.json | File | 5.78 KB | 0644 |
|