Files
pole-book/server/node_modules/@strapi/design-system/dist/components/RawTable/RawTableContext.d.ts

12 lines
412 B
TypeScript

import * as React from 'react';
export interface RawTableContextValue {
rowIndex: number;
colIndex: number;
setTableValues: ({ rowIndex, colIndex }: {
rowIndex: number;
colIndex: number;
}) => void;
}
export declare const RawTableContext: React.Context<RawTableContextValue>;
export declare const useTable: () => RawTableContextValue;
//# sourceMappingURL=RawTableContext.d.ts.map