diff --git a/components/lib/paginator/paginator.d.ts b/components/lib/paginator/paginator.d.ts index 4117f13a22..f792ca92e3 100644 --- a/components/lib/paginator/paginator.d.ts +++ b/components/lib/paginator/paginator.d.ts @@ -126,14 +126,14 @@ interface PaginatorJumpToPageInputOptions { interface PaginatorTemplateOptions { layout: string; - FirstPageLink: PaginatorFirstPageLinkType; - PrevPageLink: PaginatorPrevPageLinkType; - PageLinks: PaginatorPageLinksType; - NextPageLink: PaginatorNextPageLinkType; - LastPageLink: PaginatorLastPageLinkType; - RowsPerPageDropdown: PaginatorRowsPerPageDropdownType; - CurrentPageReport: PaginatorCurrentPageReportType; - JumpToPageInput: PaginatorJumpToPageInputType; + FirstPageLink?: PaginatorFirstPageLinkType; + PrevPageLink?: PaginatorPrevPageLinkType; + PageLinks?: PaginatorPageLinksType; + NextPageLink?: PaginatorNextPageLinkType; + LastPageLink?: PaginatorLastPageLinkType; + RowsPerPageDropdown?: PaginatorRowsPerPageDropdownType; + CurrentPageReport?: PaginatorCurrentPageReportType; + JumpToPageInput?: PaginatorJumpToPageInputType; } export type PaginatorTemplate = string | PaginatorTemplateOptions;