export type JsonOrPath = string | Record; export type PromiseOr = T | Promise; export type ResultMap = Map; export type VerifyResult = "match" | "block"; export type CreateVerify = (json: JsonOrPath) => (path: string) => Promise; export type Verify = (json: JsonOrPath, path: string) => Promise;