Interface ICustomer

interface ICustomer {
    domain_names: string[];
    js_preferences: {
        backIcon: string;
        bigSubtitleHotkey: string[];
        bigSubtitleIcon: string;
        bindDom: string;
        continueReadingIcon: string;
        crosslineHotkey: string[];
        crosslineIcon: string;
        exitHotkey: string[];
        exitIcon: string;
        fixedHotkey: string[];
        fixedIcon: string;
        focusableDocumentSelector: string;
        helpHotkey: string[];
        helpHref: string;
        helpIcon: string;
        imgSelector: string;
        mouseCursorHotkey: string[];
        mouseCursorIcon: string;
        paletteExclude: string;
        paletteHotkey: string[];
        paletteIcon: string;
        qrcodeSelector: string;
        readTypeHotkey: string[];
        readTypeIcon: string;
        resetHotkey: string[];
        resetIcon: string;
        textColor: string;
        themeColor: string;
        toolbarTypeHotkey: string[];
        toolbarTypeIcon: string;
        ttsUrl: string;
        voiceSpeedFastIcon: string;
        voiceSpeedHotkey: string[];
        voiceSpeedMediumIcon: string;
        voiceSpeedSlowIcon: string;
        voiceToggleDisableIcon: string;
        voiceToggleEnableIcon: string;
        voiceToggleHotkey: string[];
        welcomeForEnableTool: string;
        welcomeForScreenReading: string;
        zoomInHotkey: string[];
        zoomInIcon: string;
        zoomOutHotkey: string[];
        zoomOutIcon: string;
    };
    pages: IPage[];
}

Properties

domain_names: string[]
js_preferences: {
    backIcon: string;
    bigSubtitleHotkey: string[];
    bigSubtitleIcon: string;
    bindDom: string;
    continueReadingIcon: string;
    crosslineHotkey: string[];
    crosslineIcon: string;
    exitHotkey: string[];
    exitIcon: string;
    fixedHotkey: string[];
    fixedIcon: string;
    focusableDocumentSelector: string;
    helpHotkey: string[];
    helpHref: string;
    helpIcon: string;
    imgSelector: string;
    mouseCursorHotkey: string[];
    mouseCursorIcon: string;
    paletteExclude: string;
    paletteHotkey: string[];
    paletteIcon: string;
    qrcodeSelector: string;
    readTypeHotkey: string[];
    readTypeIcon: string;
    resetHotkey: string[];
    resetIcon: string;
    textColor: string;
    themeColor: string;
    toolbarTypeHotkey: string[];
    toolbarTypeIcon: string;
    ttsUrl: string;
    voiceSpeedFastIcon: string;
    voiceSpeedHotkey: string[];
    voiceSpeedMediumIcon: string;
    voiceSpeedSlowIcon: string;
    voiceToggleDisableIcon: string;
    voiceToggleEnableIcon: string;
    voiceToggleHotkey: string[];
    welcomeForEnableTool: string;
    welcomeForScreenReading: string;
    zoomInHotkey: string[];
    zoomInIcon: string;
    zoomOutHotkey: string[];
    zoomOutIcon: string;
}

Type declaration

  • backIcon: string
  • bigSubtitleHotkey: string[]
  • bigSubtitleIcon: string
  • bindDom: string
  • continueReadingIcon: string
  • crosslineHotkey: string[]
  • crosslineIcon: string
  • exitHotkey: string[]
  • exitIcon: string
  • fixedHotkey: string[]
  • fixedIcon: string
  • focusableDocumentSelector: string
  • helpHotkey: string[]
  • helpHref: string
  • helpIcon: string
  • imgSelector: string
  • mouseCursorHotkey: string[]
  • mouseCursorIcon: string
  • paletteExclude: string
  • paletteHotkey: string[]
  • paletteIcon: string
  • qrcodeSelector: string
  • readTypeHotkey: string[]
  • readTypeIcon: string
  • resetHotkey: string[]
  • resetIcon: string
  • textColor: string
  • themeColor: string
  • toolbarTypeHotkey: string[]
  • toolbarTypeIcon: string
  • ttsUrl: string
  • voiceSpeedFastIcon: string
  • voiceSpeedHotkey: string[]
  • voiceSpeedMediumIcon: string
  • voiceSpeedSlowIcon: string
  • voiceToggleDisableIcon: string
  • voiceToggleEnableIcon: string
  • voiceToggleHotkey: string[]
  • welcomeForEnableTool: string
  • welcomeForScreenReading: string
  • zoomInHotkey: string[]
  • zoomInIcon: string
  • zoomOutHotkey: string[]
  • zoomOutIcon: string
pages: IPage[]