*Add more types from webextension
This commit is contained in:
parent
e917c0e7b4
commit
7d5578f5ee
|
@ -1,16 +1,20 @@
|
|||
import { WebRequest, Proxy } from "webextension-polyfill";
|
||||
import OnHeadersReceivedDetailsType = WebRequest.OnHeadersReceivedDetailsType;
|
||||
import OnBeforeRequestDetailsType = WebRequest.OnBeforeRequestDetailsType;
|
||||
import OnBeforeSendHeadersDetailsType = WebRequest.OnBeforeSendHeadersDetailsType;
|
||||
import OnCompletedDetailsType = WebRequest.OnCompletedDetailsType;
|
||||
import OnErrorOccurredDetailsType = WebRequest.OnErrorOccurredDetailsType;
|
||||
import BlockingResponse = WebRequest.BlockingResponse;
|
||||
import OnRequestDetailsType = Proxy.OnRequestDetailsType;
|
||||
import HttpHeaders = WebRequest.HttpHeaders;
|
||||
|
||||
export {
|
||||
OnHeadersReceivedDetailsType,
|
||||
OnBeforeRequestDetailsType,
|
||||
OnBeforeSendHeadersDetailsType,
|
||||
OnCompletedDetailsType,
|
||||
OnErrorOccurredDetailsType,
|
||||
BlockingResponse,
|
||||
OnRequestDetailsType,
|
||||
HttpHeaders,
|
||||
};
|
||||
|
|
Reference in New Issue