Skip to content

Commit

Permalink
Create src/react/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
inokawa committed Aug 1, 2023
1 parent d2f287f commit 82ca73c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 30 deletions.
31 changes: 1 addition & 30 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,2 @@
export type { CacheSnapshot } from "./core/types";
export { VList } from "./react/VList";
export type {
VListProps,
VListHandle,
VListComponentsConfig,
ScrollMode,
} from "./react/VList";
export { VGrid } from "./react/VGrid";
export type {
VGridProps,
VGridHandle,
VGridComponentsConfig,
CustomCellComponent,
CustomCellComponentProps,
} from "./react/VGrid";
export { WVList } from "./react/WVList";
export type {
WVListProps,
WVListHandle,
WVListComponentsConfig,
} from "./react/WVList";
export type {
ViewportComponentAttributes,
CustomViewportComponent,
CustomViewportComponentProps,
} from "./react/Viewport";
export type {
CustomItemComponent,
CustomItemComponentProps,
} from "./react/ListItem";
export * from "./react";
27 changes: 27 additions & 0 deletions src/react/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
export { VList } from "./VList";
export type {
VListProps,
VListHandle,
VListComponentsConfig,
ScrollMode,
} from "./VList";
export { VGrid } from "./VGrid";
export type {
VGridProps,
VGridHandle,
VGridComponentsConfig,
CustomCellComponent,
CustomCellComponentProps,
} from "./VGrid";
export { WVList } from "./WVList";
export type {
WVListProps,
WVListHandle,
WVListComponentsConfig,
} from "./WVList";
export type {
ViewportComponentAttributes,
CustomViewportComponent,
CustomViewportComponentProps,
} from "./Viewport";
export type { CustomItemComponent, CustomItemComponentProps } from "./ListItem";

0 comments on commit 82ca73c

Please sign in to comment.