@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
25 lines (24 loc) • 1.12 kB
TypeScript
/**
* AskNews API
* AskNews API [](https://status.asknews.app/status/prod)
*
* The version of the OpenAPI document: 0.24.66
* Contact: contact@emergentmethods.ai
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { AnthropicTextBlock } from './AnthropicTextBlock';
import type { AnthropicThinkingBlock } from './AnthropicThinkingBlock';
import type { AnthropicToolUseBlock } from './AnthropicToolUseBlock';
/**
* @type ContentBlock1
*
* @export
*/
export type ContentBlock1 = AnthropicTextBlock | AnthropicThinkingBlock | AnthropicToolUseBlock;
export declare function ContentBlock1FromJSON(json: any): ContentBlock1;
export declare function ContentBlock1FromJSONTyped(json: any, ignoreDiscriminator: boolean): ContentBlock1;
export declare function ContentBlock1ToJSON(json: any): any;
export declare function ContentBlock1ToJSONTyped(value?: ContentBlock1 | null, ignoreDiscriminator?: boolean): any;