@gphone/sdk
    Preparing search index...

    Interface AppKeybindInput

    A default hotkey an app declares for itself.

    Deliberately no scope or when here — an app-declared bind is always phone-scope and eligible only while that app is foreground. Both are derived by the runtime aggregator in shell/state/keybinds.ts as scope: 'phone' and when: 'app:${appId}', which is what stops an app claiming an unscoped action or another app's context.

    interface AppKeybindInput {
        defaultKey: string;
        id: string;
        label: string;
    }
    Index
    defaultKey: string
    id: string

    Unique within this app's own list. Namespaced automatically to ${appId}:${id}.

    label: string

    Shown in Settings > Shortcuts.