Skip to content

Commit

Permalink
Merge pull request #449 from saschanaz/autoexpose
Browse files Browse the repository at this point in the history
Autoexpose types by [Exposed]
  • Loading branch information
mhegazy authored Apr 23, 2018
2 parents c3ce34f + 71091a2 commit 2c907df
Show file tree
Hide file tree
Showing 9 changed files with 510 additions and 217 deletions.
30 changes: 1 addition & 29 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3277,16 +3277,6 @@ declare var Console: {
new(): Console;
};

interface ContentScriptGlobalScope extends EventTarget {
readonly msContentScript: ExtensionScriptApis;
readonly window: Window;
}

declare var ContentScriptGlobalScope: {
prototype: ContentScriptGlobalScope;
new(): ContentScriptGlobalScope;
};

interface ConvolverNode extends AudioNode {
buffer: AudioBuffer | null;
normalize: boolean;
Expand Down Expand Up @@ -10555,7 +10545,7 @@ interface PromiseRejectionEvent extends Event {

declare var PromiseRejectionEvent: {
prototype: PromiseRejectionEvent;
new(): PromiseRejectionEvent;
new(type: string, eventInitDict: PromiseRejectionEventInit): PromiseRejectionEvent;
};

interface PushManager {
Expand Down Expand Up @@ -10877,24 +10867,6 @@ declare var RTCIdentityAssertion: {
new(idp: string, name: string): RTCIdentityAssertion;
};

interface RTCIdentityProviderGlobalScope {
readonly rtcIdentityProvider: RTCIdentityProviderRegistrar;
}

declare var RTCIdentityProviderGlobalScope: {
prototype: RTCIdentityProviderGlobalScope;
new(): RTCIdentityProviderGlobalScope;
};

interface RTCIdentityProviderRegistrar {
register(idp: RTCIdentityProvider): void;
}

declare var RTCIdentityProviderRegistrar: {
prototype: RTCIdentityProviderRegistrar;
new(): RTCIdentityProviderRegistrar;
};

interface RTCPeerConnectionEventMap {
"connectionstatechange": Event;
"datachannel": RTCDataChannelEvent;
Expand Down
Loading

0 comments on commit 2c907df

Please sign in to comment.