mwg API
    Preparing search index...

    Interface DialogueRequest

    what the runner wants shown; how it looks is the presenter's business entirely

    interface DialogueRequest {
        choices?: EventChoice[];
        speaker?: string;
        text: string;
    }
    Index
    choices?: EventChoice[]

    present when the runner is asking rather than telling; resolve with the chosen value

    speaker?: string
    text: string