Remove URI factory
It's not actually used anymore.
This commit is contained in:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user