Skip to content

Commit

Permalink
specified TODOs in declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalle Ott committed Feb 28, 2017
1 parent eda5e8d commit d0f2f3e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ export interface VirtualScrollProps {
width: number;
}
export class VirtualScroll extends React.Component<VirtualScrollProps, {}> { }
// TODO
// TODO add proper typing
export type CollectionProps = any;
export class Collection extends React.Component<CollectionProps, {}> { }
// TODO
// TODO add proper typing
export type FlexTableProps = any;
export class FlexTable extends React.Component<FlexTableProps, {}> { }
// TODO
// TODO add proper typing
export type FlexColumnProps = any;
export class FlexColumn extends React.Component<FlexColumnProps, {}> { }
// TODO
// TODO add proper typing
export type SortDirectionProps = any;
export class SortDirection extends React.Component<SortDirectionProps, {}> { }
// TODO
// TODO add proper typing
export type GridProps = any;
export class Grid extends React.Component<GridProps, {}> { }

Expand Down

0 comments on commit d0f2f3e

Please sign in to comment.