@squarecloud/blob
Version:
Official Square Cloud Blob SDK for NodeJS
8 lines (5 loc) • 373 B
text/typescript
import { LiteralAssertionProps, APIObjectAssertionProps } from '../../types/assertions.mjs';
import 'zod';
declare function handleLiteralAssertion({ schema, value, expect, code, }: LiteralAssertionProps): void;
declare function handleAPIObjectAssertion({ schema, value, code, }: APIObjectAssertionProps): any;
export { handleAPIObjectAssertion, handleLiteralAssertion };