mirror of
https://github.com/giuseqpe/vimium-for-obsidian.git
synced 2026-07-22 08:33:35 +00:00
7 lines
280 B
TypeScript
7 lines
280 B
TypeScript
export const DEFAULT_BINDINGS: Readonly<Record<string, string>>;
|
|
export class KeyEngine {
|
|
constructor(bindings?: Readonly<Record<string, string>>, timeout?: number);
|
|
pending: string;
|
|
reset(): void;
|
|
feed(key: string, now?: number): { action?: string; pending?: string };
|
|
}
|