docs: adds missing api docs

This commit is contained in:
vsavkin
2016-05-24 13:41:37 -07:00
parent 4f6ec01932
commit 5bf1c93ead
3 changed files with 75 additions and 2 deletions

View File

@ -1,6 +1,9 @@
import { Tree, TreeNode } from './tree';
import { shallowEqual } from './util';
/**
* A URL in the tree form.
*/
export class UrlTree extends Tree<UrlSegment> {
constructor(root: TreeNode<UrlSegment>, public queryParameters: {[key: string]: string}, public fragment: string | null) {
super(root);