// Content/Toasts/Structs/S_ToastSettings.ts
import type {Float, Integer} from "../../types.js";
export interface S_ToastSettings {
MaxVisibleToasts: Integer;
DefaultDuration: Float;
AlsoLogToConsole: boolean;
IsEnabled: boolean;
}