/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/paginator/paginator-module.ts
19 строк
574 B
Kristiyan Kostadinov
fix(material/paginator): remove deprecated factory functions
03 сен 2025, 09:51
03 сен 2025, 09:51
6d26c0f
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {MatButtonModule} from '../button'; import {MatSelectModule} from '../select'; import {MatTooltipModule} from '../tooltip'; import {MatPaginator} from './paginator'; @NgModule({ imports: [MatButtonModule, MatSelectModule, MatTooltipModule, MatPaginator], exports: [MatPaginator], }) export class MatPaginatorModule {}