Bug 1543754 - Part 1: Update SourcePayload type to match response. r=jlast

Differential Revision: https://phabricator.services.mozilla.com/D27127

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Logan Smyth 2019-04-12 18:53:57 +00:00
parent d8d6b2e0b1
commit d074c1744a

View File

@ -89,14 +89,11 @@ export type FramePacket = {
*/
export type SourcePayload = {
actor: ActorId,
generatedUrl?: URL,
introductionType: string,
introductionUrl?: URL,
url: URL | null,
isBlackBoxed: boolean,
isPrettyPrinted: boolean,
isSourceMapped: boolean,
sourceMapURL?: URL,
url: URL
sourceMapURL: URL | null,
introductionUrl: URL | null,
introductionType: string | null
};
/**