lingjing/node_modules/next/dist/next-devtools/dev-overlay/menu/dev-overlay-menu.d.ts
2026-02-23 09:51:43 +00:00

16 lines
595 B
TypeScript

export declare const DevtoolMenu: ({ closeOnClickOutside, items, }: {
closeOnClickOutside?: boolean;
items: Array<false | undefined | null | {
onClick?: () => void;
title?: string;
label: string;
value: React.ReactNode;
attributes?: Record<string, string | boolean>;
footer?: boolean;
}>;
}) => import("react/jsx-runtime").JSX.Element;
export declare function IssueCount({ children }: {
children: number;
}): import("react/jsx-runtime").JSX.Element;
export declare function ChevronRight(): import("react/jsx-runtime").JSX.Element;