@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
25 lines (24 loc) • 1.06 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 { AnthropicInputJsonDelta } from './AnthropicInputJsonDelta';
import type { AnthropicTextDelta } from './AnthropicTextDelta';
import type { AnthropicThinkingDelta } from './AnthropicThinkingDelta';
/**
* @type Delta1
*
* @export
*/
export type Delta1 = AnthropicInputJsonDelta | AnthropicTextDelta | AnthropicThinkingDelta;
export declare function Delta1FromJSON(json: any): Delta1;
export declare function Delta1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Delta1;
export declare function Delta1ToJSON(json: any): any;
export declare function Delta1ToJSONTyped(value?: Delta1 | null, ignoreDiscriminator?: boolean): any;