@mai3/phaser-sdk
Version:
A UI component library based on the Phaser game engine
10 lines • 392 B
TypeScript
import { LabelConfig } from "./LabelConfig";
import { Alignment, Margin } from "../common";
export interface ToastConfig extends LabelConfig {
alignment?: Alignment;
type?: "success" | "warn" | "error" | "info";
animationType?: "fade" | "slide" | "slideDown" | "slideUp" | "scale" | "bounce";
duration?: number;
margin?: Margin;
}
//# sourceMappingURL=ToastConfig.d.ts.map