@sphereon/pex
Version:
A Typescript implementation of the v1 and v2 DIF Presentation Exchange specification
20 lines (19 loc) • 650 B
TypeScript
import { Status } from '../../ConstraintUtils';
export interface HandlerCheckResult {
input_descriptor_path: string;
verifiable_credential_path: string;
evaluator: string;
status: Status;
message?: string;
payload?: any;
}
export declare const HandlerCheckResult: {
new (input_descriptor_path: string, verifiable_credential_path: string, evaluator: string, status: Status, message?: string, payload?: unknown): {
input_descriptor_path: string;
verifiable_credential_path: string;
evaluator: string;
status: Status;
message?: string | undefined;
payload?: unknown;
};
};