oneframe-react
Version:
Oneframe React ## Components, Hooks, Helper Functions & State Management
15 lines (14 loc) • 449 B
TypeScript
import React from 'react';
interface IProps {
expandable?: boolean;
expandOpen?: boolean;
expandContent?: React.ReactNode;
expandIcon?: React.ReactNode;
expandIconPosition?: 'left' | 'right';
children?: React.ReactNode;
className?: string;
tableSetState?: (e: any) => void;
onClick?: () => void;
}
declare const _default: React.MemoExoticComponent<({ ...props }: IProps) => JSX.Element>;
export default _default;