import { utils } from "pixi.js"; import { DButtonBase } from "./d-button-base"; import { DOnOptions } from "./d-on-options"; /** * {@link DButtonGroup} events. */ export interface DButtonGroupEvents { /** * Triggered when the active button is changed. * * @param emitter an emitter */ active(newActive: BUTTON | null, oldActive: BUTTON | null, emitter: EMITTER): void; } /** * {@link DButtonGroup} "on" options. */ export interface DButtonGroupOnOptions extends Partial>, DOnOptions { } export interface DButtonGroupOptions