blob: 2806cae60b01672b9aa1cbeb21dabc5930d19788 [file] [log] [blame]
/**
* @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, K = T> extends CdkTreeNodePadding<T, K> {
/** The level of depth of the tree node. The padding will be `level * indent` pixels. */
get level(): number;
set level(value: number);
/** The indent for each level. Default number 40px from material design menu sub-menu spec. */
get indent(): number | string;
set indent(indent: number | string);
}