@alexop/openapi-zod-client
Version:
[](https://openapi-zod-client.vercel.app/)
13 lines (12 loc) • 366 B
TypeScript
declare module "whence" {
export default function whence<T>(
input: T,
context: Record<string, string | number | boolean>,
options?: { functions: boolean }
): boolean;
export function sync<T>(
input: T,
context: Record<string, string | number | boolean>,
options?: { functions: boolean }
): boolean;
}