import type { Result } from '@chzky/core'; import type { VerifyError } from '../../mod.js'; /** ## `VerifyxExp` : 验证表达式 + `Ok()`表示校验成功 + `Err(VerifyError)`表示校验错误 */ export type VerifyxExp = (target: T) => Result; //# sourceMappingURL=verify.type.d.ts.map