@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
11 lines (10 loc) • 342 B
TypeScript
/// <reference types="react" />
import { ListProps } from "./list";
import ListPlaceholder from "./list-placeholder";
export type { ListDirection } from "./list.shared";
interface ListInterface {
(props: ListProps): JSX.Element;
Placeholder: typeof ListPlaceholder;
}
declare const List: ListInterface;
export default List;