Skip to content

Commit

Permalink
Convert src/platform/path-web to ts (PolymerLabs#2884)
Browse files Browse the repository at this point in the history
* Convert path-web to ts

* Changed return to throwing an "unimplemented" Error.
  • Loading branch information
raulverag authored Apr 12, 2019
1 parent 7817555 commit cce76c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/platform/path-web.d.ts

This file was deleted.

7 changes: 6 additions & 1 deletion src/platform/path-web.js → src/platform/path-web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
// subject to an additional IP rights grant found at
// http://polymer.github.io/PATENTS.txt

export const path = {};
export const path = {

join(pth : string, name : string) {
throw new Error("Not implemented"); // We just want the interface
},
};

0 comments on commit cce76c8

Please sign in to comment.