@athosws/react-components
Version:
This is a set of useful ReactJS components developed by Athos.\n Email:ladiesman217.as@gmail.com
17 lines (16 loc) • 341 B
text/typescript
export interface ADTSelectedRowsToastProps {
selectedRows: number;
toastID: string;
uncheckAll: () => void;
selectData: {
selectedRows: number[];
checkState: 0 | 1 | 2;
};
tableID: string;
funcs?: {
main: React.ReactNode;
secondary: React.ReactNode;
others: (() => void)[];
};
highlightColor: string;
}