remove unused classes

This commit is contained in:
Çetin
2021-12-22 16:06:49 +03:00
parent e78b5afea5
commit 6b24f8fcbe
30 changed files with 361 additions and 646 deletions

View File

@@ -31,4 +31,10 @@ export class NodeService {
.toPromise()
.then(res => res.data as TreeNode[]);
}
getTreeNodes(){
return this.http.get<any>('assets/demo/data/treenodes.json')
.toPromise()
.then(res => res.data as TreeNode[]);
}
}