first commit
This commit is contained in:
15
frontend/node_modules/rc-table/lib/Footer/index.d.ts
generated
vendored
Normal file
15
frontend/node_modules/rc-table/lib/Footer/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as React from 'react';
|
||||
import type { ColumnType, StickyOffsets } from '../interface';
|
||||
import Summary from './Summary';
|
||||
type FlattenColumns<RecordType> = readonly (ColumnType<RecordType> & {
|
||||
scrollbar?: boolean;
|
||||
})[];
|
||||
export interface FooterProps<RecordType> {
|
||||
children: React.ReactNode;
|
||||
stickyOffsets: StickyOffsets;
|
||||
flattenColumns: FlattenColumns<RecordType>;
|
||||
}
|
||||
declare function Footer<RecordType>(props: FooterProps<RecordType>): React.JSX.Element;
|
||||
declare const _default: typeof Footer;
|
||||
export default _default;
|
||||
export declare const FooterComponents: typeof Summary;
|
||||
Reference in New Issue
Block a user