Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IMainPageOptions

    interface IMainPageOptions {
        activity?: ReduxProp<boolean>;
        badge?: ReduxProp<any>;
        group: "global" | "dashboard" | "per-game" | "support" | "hidden";
        hotkey?: string;
        hotkeyRaw?: string;
        id?: string;
        onReset?: () => void;
        priority?: number;
        props?: () => any;
        visible?: () => boolean;
    }
    Index

    Properties

    activity?: ReduxProp<boolean>
    badge?: ReduxProp<any>
    group: "global" | "dashboard" | "per-game" | "support" | "hidden"
    hotkey?: string

    A hotkey to be pressed together with Ctrl+Shift to open that page

    hotkeyRaw?: string

    A hotkey to be pressed to open that page. In this case the caller has to specify any modifiers in the format required by electron

    id?: string

    id for this page. If none is specified the page title is used. Use the id to avoid name collisions if another extension is already using the same title.

    onReset?: () => void
    priority?: number
    props?: () => any
    visible?: () => boolean