aboutsummaryrefslogtreecommitdiff
path: root/src/webpack
diff options
context:
space:
mode:
Diffstat (limited to 'src/webpack')
-rw-r--r--src/webpack/common/types/menu.d.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/webpack/common/types/menu.d.ts b/src/webpack/common/types/menu.d.ts
index e48d594..bf5508a 100644
--- a/src/webpack/common/types/menu.d.ts
+++ b/src/webpack/common/types/menu.d.ts
@@ -21,7 +21,7 @@ import type { ComponentType, CSSProperties, PropsWithChildren, UIEvent } from "r
type RC<C> = ComponentType<PropsWithChildren<C & Record<string, any>>>;
export interface Menu {
- ContextMenu: RC<{
+ Menu: RC<{
navId: string;
onClose(): void;
className?: string;
@@ -49,19 +49,21 @@ export interface Menu {
id: string;
interactive?: boolean;
}>;
+ // TODO: Type me
+ MenuSliderControl: RC<any>;
}
export interface ContextMenuApi {
close(): void;
open(
event: UIEvent,
- render?: Menu["ContextMenu"],
+ render?: Menu["Menu"],
options?: { enableSpellCheck?: boolean; },
- renderLazy?: () => Promise<Menu["ContextMenu"]>
+ renderLazy?: () => Promise<Menu["Menu"]>
): void;
openLazy(
event: UIEvent,
- renderLazy?: () => Promise<Menu["ContextMenu"]>,
+ renderLazy?: () => Promise<Menu["Menu"]>,
options?: { enableSpellCheck?: boolean; }
): void;
}