signify-ts
Version:
Signing at the edge for KERI, ACDC, and KERIA
17 lines (16 loc) • 463 B
TypeScript
import { Serials, Version } from '../core/core';
import { Serder } from './serder';
declare namespace vdr {
interface VDRInceptArgs {
pre: string;
toad?: number | string;
nonce?: string;
baks?: string[];
cnfg?: string[];
version?: Version;
kind?: Serials;
code?: string;
}
function incept({ pre, toad, nonce, baks, cnfg, version, kind, code, }: VDRInceptArgs): Serder;
}
export { vdr };