pragmate-ui
Version:
An advanced, on-demand React UI library optimized for BeyondJS. Pragmate UI provides modular, responsive, and accessible components with a focus on efficient bundle sizes and a streamlined development process.
58 lines (48 loc) • 1.08 kB
TypeScript
/************
Processor: ts
************/
// definitions.ts
declare namespace ns_0 {
/// <reference types="react" />
export interface IPropsDropdowm {
handleClick?: () => void;
show: boolean;
items?: Array<string>;
children?: React.ReactNode;
isImage?: boolean;
title?: string;
}
}
// index.tsx
declare namespace ns_1 {
/// <reference types="react" />
import IPropsDropdowm = ns_0.IPropsDropdowm;
export function DropdownBottomMenu({
handleClick,
show,
items,
children,
isImage,
title
}: IPropsDropdowm): JSX.Element;
}
// item.tsx
declare namespace ns_2 {
/// <reference types="react" />
export const MenuItem: ({
item
}: {
item: any;
}) => JSX.Element;
}
// list.tsx
declare namespace ns_3 {
/// <reference types="react" />
export const MenuList: ({
items
}: {
items: any;
}) => JSX.Element;
}
export import DropdownBottomMenu = ns_1.DropdownBottomMenu;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };