File: ToggleTemplate.d.ts

package info (click to toggle)
cockpit 355-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 311,568 kB
  • sloc: javascript: 774,787; python: 40,655; ansic: 35,157; cpp: 11,141; sh: 3,512; makefile: 580; xml: 261
file content (18 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** Allows more customization of the pagination dropdown toggle. The following properties
 * should be passed into the pagination component's toggleTemplate property.
 */
/// <reference types="react" />
export interface PaginationToggleTemplateProps {
    /** The first index of the items being paginated */
    firstIndex?: number;
    /** The last index of the items being paginated */
    lastIndex?: number;
    /** The total number of items being paginated */
    itemCount?: number;
    /** The type or title of the items being paginated */
    itemsTitle?: string;
    /** The word that joins the index and itemCount/itemsTitle */
    ofWord?: React.ReactNode;
}
export declare const ToggleTemplate: React.FunctionComponent<PaginationToggleTemplateProps>;
//# sourceMappingURL=ToggleTemplate.d.ts.map