@seamapi/blueprint
Version:
Build tools for the Seam API using this blueprint.
15 lines (14 loc) • 551 B
TypeScript
import type { Json } from '../../lib/json.js';
import type { CodeSampleContext, CodeSampleDefinition } from './code-sample.js';
export declare const createCsharpRequest: ({ request }: CodeSampleDefinition, _context: CodeSampleContext) => string;
export declare const createCsharpResponse: ({ response, title }: {
title: string;
description: string;
request: {
path: string;
parameters: Record<string, Json>;
};
response: {
body: Record<string, Json> | null;
};
}, context: CodeSampleContext) => string;