@alauda/ui
Version:
Angular UI components by Alauda Frontend Team.
21 lines (20 loc) • 761 B
TypeScript
import { Subject } from 'rxjs';
import * as i0 from "@angular/core";
/**
* To modify the labels and text displayed, create a new instance of MatPaginatorIntl and
* include it in a custom provider
*/
export declare class PaginatorIntl {
/**
* Stream that emits whenever the labels here are changed. Use this to notify
* components if the labels have changed after initialization.
*/
readonly changes: Subject<void>;
/** A label for the page size selector. */
itemsPerPageLabel: string;
jumperLabelPrefix: string;
jumperLabelSuffix: string;
getTotalLabel: (length: number) => string;
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorIntl, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<PaginatorIntl>;
}