UNPKG

@seamapi/blueprint

Version:

Build tools for the Seam API using this blueprint.

15 lines (14 loc) 547 B
import type { Json } from '../../lib/json.js'; import type { CodeSampleContext, CodeSampleDefinition } from './code-sample.js'; export declare const createJavaRequest: ({ request }: CodeSampleDefinition, _context: CodeSampleContext) => string; export declare const createJavaResponse: ({ response, title }: { title: string; description: string; request: { path: string; parameters: Record<string, Json>; }; response: { body: Record<string, Json> | null; }; }, context: CodeSampleContext) => string;