@angular/material
Version:
Angular Material
18 lines (17 loc) • 638 B
TypeScript
/**
* @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.io/license
*/
import { CdkTreeNodePadding } from '@angular/cdk/tree';
/**
* Wrapper for the CdkTree padding with Material design styles.
*/
export declare class MatTreeNodePadding<T> extends CdkTreeNodePadding<T> {
/** The level of depth of the tree node. The padding will be `level * indent` pixels. */
level: number;
/** The indent for each level. Default number 40px from material design menu sub-menu spec. */
indent: number;
}