File: ToggleTemplate.d.ts

package info (click to toggle)
cockpit 358-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 317,272 kB
  • sloc: javascript: 775,788; python: 41,626; ansic: 33,970; cpp: 11,141; sh: 3,566; makefile: 581; xml: 262
file content (18 lines) | stat: -rw-r--r-- 807 bytes parent folder | download | duplicates (20)
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