5 lines
257 B
TypeScript
Executable file
5 lines
257 B
TypeScript
Executable file
/** Check if an error is an exhaustive samples validation error (by digest). */
|
|
export declare function isInstantValidationError(err: unknown): err is InstantValidationError;
|
|
export declare class InstantValidationError extends Error {
|
|
digest: string;
|
|
}
|