TeaSpeak-Client/imports/shared-app/ui/modal/ModalNewcomer.d.ts

17 lines
439 B
TypeScript
Raw Normal View History

2021-02-20 12:55:36 -05:00
import { Modal } from "tc-shared/ui/elements/Modal";
export interface EventModalNewcomer {
"show_step": {
"step": "welcome" | "microphone" | "identity" | "finish";
};
"exit_guide": {
ask_yesno: boolean;
};
"modal-shown": {};
"action-next-help": {};
"step-status": {
allowNextStep: boolean;
allowPreviousStep: boolean;
};
}
export declare function openModalNewcomer(): Modal;