LocalLm types documentation
    Preparing search index...

    Interface ImgData

    Image data associated with a message or response.

    ImgData

    The unique identifier for the image.

    The base64 encoded image data.

    const imgExample: ImgData = {
    id: 1,
    data: 'base64image'
    };
    interface ImgData {
        data: string;
        id: number;
    }
    Index

    Properties

    Properties

    data: string
    id: number