mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-23 03:18:48 +02:00
18 lines
597 B
TypeScript
18 lines
597 B
TypeScript
export interface FooterLegendProps {
|
|
actionDescriptionMap?: unknown;
|
|
onOKActionDescription?: string;
|
|
onCancelActionDescription?: string;
|
|
onSecondaryActionDescription?: string;
|
|
onOptionsActionDescription?: string;
|
|
onMenuActionDescription?: string;
|
|
onButtonDown?: () => void;
|
|
onButtonUp?: () => void;
|
|
onOKButton?: () => void;
|
|
onCancelButton?: () => void;
|
|
onSecondaryButton?: () => void;
|
|
onOptionsButton?: () => void;
|
|
onGamepadDirection?: () => void;
|
|
onGamepadFocus?: () => void;
|
|
onGamepadBlur?: () => void;
|
|
onMenuButton?: () => void;
|
|
} |