UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

23 lines (22 loc) 604 B
import type { Event } from "../Event.js"; import { EventRegistry } from "../EventRegistry.js"; /** * Arguments for the "input.keyboard-shortcut-pressed" event. */ export interface ConsoleKeyInfoObj { } export declare class InputEvents extends EventRegistry { protected readonly _prefix = "input"; /** * Raised when the user shakes the device. Mobile only. * * @mobileOnly */ get shake(): Event; /** * Raised when the user presses a keyboard shortcut. Mobile only. * * @mobileOnly */ get keyboardShortcutPressed(): Event<ConsoleKeyInfoObj>; }