@launchmenu/applet-help
Version:
An applet to show some information for when first using LaunchMenu
19 lines • 540 B
TypeScript
import { KeyPattern, LFC } from "@launchmenu/core";
/**
* A component to show the description of a keyboard shortcut
*/
export declare const KeyPatternDescription: LFC<{
description: string;
patterns: KeyPattern[] | KeyPattern;
first?: boolean;
}>;
/**
* A component to show multiple key patterns
*/
export declare const KeyPatternTable: LFC<{
patterns: ({
pattern: KeyPattern | KeyPattern[];
description: string;
} | null)[];
}>;
//# sourceMappingURL=KeyPatternDescription.d.ts.map