Skip to content

DocumentSource

type DocumentSource =
| {
type: "documentSourceBytes";
bytes: Uint8Array;
}
| {
type: "documentSourceText";
text: string;
}
| {
type: "documentSourceContentBlock";
content: DocumentContentBlock[];
}
| {
type: "documentSourceS3Location";
s3Location: S3Location;
};

Defined in: src/types/media.ts:300

Source for a document (Class version).