TypeScript/tests/cases/projects/VisibilityOfCrosssModuleTypeUsage/server.ts
2014-07-12 17:30:19 -07:00

6 lines
133 B
TypeScript

export interface IServer {
}
export interface IWorkspace {
toAbsolutePath(server:IServer, workspaceRelativePath?:string):string;
}