/** * This interface describes a handle to a dialog. Instances are created by calling DialogProvider.create(). */ export interface Dialog { addon_key: string; isOpen(): boolean; }