8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
|
/**
|
||
|
@hidden
|
||
|
*/
|
||
|
export declare class ArgumentError extends Error {
|
||
|
readonly validationErrors: ReadonlyMap<string, Set<string>>;
|
||
|
constructor(message: string, context: Function, errors?: Map<string, Set<string>>);
|
||
|
}
|