UNPKG

270 BTypeScriptView Raw
1import { Token } from '@lumino/coreutils';
2/**
3 * The tree path updater token.
4 */
5export declare const ITreePathUpdater: Token<ITreePathUpdater>;
6/**
7 * A function to call to update the tree path.
8 */
9export interface ITreePathUpdater {
10 (treePath: string): void;
11}