escpos-ts API - v1.0.0
    Preparing search index...

    Interface CapabilitiesData

    Top-level shape of the capabilities.json printer capabilities database.

    The database is bundled with the library and contains profiles for common ESC/POS printers as well as a full encoding table for code-page management.

    1.0.0

    interface CapabilitiesData {
        encodings: Record<
            string,
            { data?: string[]; name: string; notes?: string; python_encode?: string },
        >;
        profiles: Record<string, ProfileData>;
    }
    Index

    Properties

    Properties

    encodings: Record<
        string,
        { data?: string[]; name: string; notes?: string; python_encode?: string },
    >

    All known ESC/POS code-page encodings, keyed by canonical name (e.g. "CP437", "ISO-8859-1").

    profiles: Record<string, ProfileData>

    All known printer profiles, keyed by profile name (e.g. "default", "TM-T88V").