|
You can extend an interface by declaring it multiple times. For your example, you could do so using:
interface Window {
opera: any;
}
Unfortunately, there's a current limitation that you can't extend interfaces in lib.d.ts. This is will be fixed in a future version.
|