export interface ISplitResult { head: string; tail: string; } export interface UriParamResult { param: string; rest: string; }