feat(dev-tools): higlight overlay

This commit is contained in:
vakrilov
2019-11-05 13:18:09 +02:00
parent cf32428f52
commit 6b467871d1
12 changed files with 325 additions and 16 deletions

View File

@ -65,6 +65,16 @@ export function setCSS(newCSS) {
css = newCSS;
}
let overlay;
export function getOverlay(): any {
return overlay;
}
export function setOverlay(newOverlay) {
overlay = newOverlay;
}
export namespace NetworkAgent {
export interface Request {
url: string;