Archived
1
0

Remove URI factory

It's not actually used anymore.
This commit is contained in:
Asher
2019-02-06 10:38:58 -06:00
parent 1b0a962c0d
commit 670b13798a
6 changed files with 8 additions and 36 deletions

View File

@ -1,14 +0,0 @@
export interface IURI {
readonly path: string;
readonly fsPath: string;
readonly scheme: string;
}
export interface IURIFactory {
/**
* Convert the object to an instance of a real URI.
*/
create<T extends IURI>(uri: IURI): T;
file(path: string): IURI;
parse(raw: string): IURI;
}