blob: 0cc212c95fed3529895998c6e4ea179ee51e603c [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 { CdkTree, CdkTreeNode } from './tree';
/**
* Node toggle to expand/collapse the node.
*/
export declare class CdkTreeNodeToggle<T> {
protected _tree: CdkTree<T>;
protected _treeNode: CdkTreeNode<T>;
/** Whether expand/collapse the node recursively. */
recursive: boolean;
protected _recursive: boolean;
constructor(_tree: CdkTree<T>, _treeNode: CdkTreeNode<T>);
_toggle(event: Event): void;
}