/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/list/tokens.ts
18 строк
663 B
Andrew Seguin
docs: fix whether typos
19 дек 2024, 18:28
19 дек 2024, 18:28
25cbbd1
Код
Авторство
О чём код?
/** * @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 {InjectionToken} from '@angular/core'; /** Object that can be used to configure the default options for the list module. */ export interface MatListConfig { /** Whether icon indicators should be hidden for single-selection. */ hideSingleSelectionIndicator?: boolean; } /** Injection token that can be used to provide the default options for the list module. */ export const MAT_LIST_CONFIG = new InjectionToken<MatListConfig>('MAT_LIST_CONFIG');