sesaparcours
    Preparing search index...

    Interface Item

    Un item du playground

    interface Item {
        container: HTMLElement;
        getValue: () => ItemValue | Promise<ItemValue>;
        isAnswered: () => boolean | Promise<boolean>;
        persistent: boolean;
        setFeedback: (isOk: boolean, feedback: string) => void;
        setFocus: () => void;
    }

    Implemented by

    Index

    Properties

    container: HTMLElement
    getValue: () => ItemValue | Promise<ItemValue>
    isAnswered: () => boolean | Promise<boolean>
    persistent: boolean
    setFeedback: (isOk: boolean, feedback: string) => void
    setFocus: () => void