Interface CodeChatResponseContent

interface CodeChatResponseContent {
    code: string;
    kind: "code";
    language?: string;
    location?: Location;
    asString?(): undefined | string;
    merge?(nextChatResponseContent): boolean;
}

Hierarchy (view full)

Implemented by

Properties

code: string
kind: "code"
language?: string
location?: Location

Methods