GeminiTextPart type

Signature:

export type GeminiTextPart = {
    partType: "text";
    value: string;
};
typescript