@essential-js/ui
Version:
EssentialJS UI
19 lines (14 loc) • 545 B
TypeScript
/************
Processor: ts
************/
import * as dependency_0 from 'react';
// FILE: index.d.tsx
declare namespace ns_index {
import HtmlHTMLAttributes = dependency_0.HtmlHTMLAttributes;
interface Props extends Partial<HtmlHTMLAttributes<HTMLElement>> {
title: string;
}
function Dropdown({ title, children, ...props }: Props): JSX.Element;
}
export import Dropdown = ns_index.Dropdown;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };