.ts
in child
interface URL {
createObjectURL(object: any, options?: ObjectURLOptions): string;
revokeObjectURL(url: string): void;
}
declare var URL: URL;
URL
is defined this way. Anyone else?
URL
interface. See https://basarat.gitbooks.io/typescript/content/docs/types/lib.d.ts.html for examples :rose: