mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
// Type definitions for angular-ui-tree v2.8.0
|
|
// Project: https://github.com/angular-ui-tree/angular-ui-tree
|
|
// Definitions by: Calvin Fernandez <https://github.com/CalvinFernandez>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module AngularUITree {
|
|
/**
|
|
* Node in list
|
|
*/
|
|
interface ITreeNode {
|
|
id: number | string;
|
|
nodes: ITreeNode[];
|
|
title: string;
|
|
}
|
|
}
|