Convert various things to Typescript

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-05-20 19:56:54 +01:00
parent 16ecc007d6
commit 6ec613c2c2
4 changed files with 104 additions and 112 deletions

View file

@ -32,3 +32,10 @@ declare global {
InstallTrigger: any;
}
}
// add method which is missing from the node typing
declare module "url" {
interface Url {
format(): string;
}
}