Interface AddCardToDeckSettings

interface AddCardToDeckSettings {
    autoRemovePreviousCards?: boolean;
    autoUpdateCardNumber?: boolean;
    forceToElement?: HTMLElement;
    index?: number;
    selectable?: boolean;
    updateInformations?: boolean;
    visible?: boolean;
}

Hierarchy (view full)

Properties

autoRemovePreviousCards?: boolean

Indicate if the cards under the new top card must be removed (to forbid players to check the content of the deck with Inspect). Default true.

autoUpdateCardNumber?: boolean

Indicate if the card count is automatically updated when a card is added or removed. Default true.

forceToElement?: HTMLElement
index?: number

Force card position. Default to end of list. Do not use if sort is defined, as it will override it.

selectable?: boolean

Set if the card is selectable. Default is true, but will be ignored if the stock is not selectable.

updateInformations?: boolean

If the card need to be updated. Default true, will flip the card if needed.

visible?: boolean

If the card will be on its visible side on the stock

Generated using TypeDoc