@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
46 lines (45 loc) • 1.63 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.
*/
/**
*
* @export
* @interface AnthropicThinkingDelta
*/
export interface AnthropicThinkingDelta {
/**
*
* @type {string}
* @memberof AnthropicThinkingDelta
*/
type?: AnthropicThinkingDeltaTypeEnum;
/**
*
* @type {string}
* @memberof AnthropicThinkingDelta
*/
thinking: string;
}
/**
* @export
*/
export declare const AnthropicThinkingDeltaTypeEnum: {
readonly ThinkingDelta: "thinking_delta";
};
export type AnthropicThinkingDeltaTypeEnum = typeof AnthropicThinkingDeltaTypeEnum[keyof typeof AnthropicThinkingDeltaTypeEnum];
/**
* Check if a given object implements the AnthropicThinkingDelta interface.
*/
export declare function instanceOfAnthropicThinkingDelta(value: object): value is AnthropicThinkingDelta;
export declare function AnthropicThinkingDeltaFromJSON(json: any): AnthropicThinkingDelta;
export declare function AnthropicThinkingDeltaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnthropicThinkingDelta;
export declare function AnthropicThinkingDeltaToJSON(json: any): AnthropicThinkingDelta;
export declare function AnthropicThinkingDeltaToJSONTyped(value?: AnthropicThinkingDelta | null, ignoreDiscriminator?: boolean): any;