NN
2016-07-24 06:08:35 +03:00
committed by Mohamed Hegazy
parent b1bc0fa775
commit acf17c35f3

4
chrome/chrome.d.ts vendored
View File

@@ -7336,7 +7336,9 @@ declare namespace chrome.webRequest {
interface WebRedirectionResponseEvent extends _WebResponseHeadersEvent<WebRedirectionResponseDetails> {}
interface WebAuthenticationChallengeEvent extends chrome.events.Event<(details: WebAuthenticationChallengeDetails, callback?: (response: BlockingResponse) => void) => void> {}
interface WebAuthenticationChallengeEvent extends chrome.events.Event<(details: WebAuthenticationChallengeDetails, callback?: (response: BlockingResponse) => void) => void> {
addListener(callback: (details: WebAuthenticationChallengeDetails) => void, filter?: RequestFilter, opt_extraInfoSpec?: string[]): void;
}
interface WebResponseErrorEvent extends _WebResponseHeadersEvent<WebResponseErrorDetails> {}