tengri/Content/Toasts/Structs/S_ToastSettings.ts

12 lines
282 B
TypeScript

// Toasts/Structs/S_ToastSettings.ts
import type { Float } from '#root/UE/Float.ts';
import type { Integer } from '#root/UE/Integer.ts';
export interface S_ToastSettings {
MaxVisibleToasts: Integer;
DefaultDuration: Float;
AlsoLogToConsole: boolean;
IsEnabled: boolean;
}