mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
chore: cleanup reexports
This commit is contained in:
7
nativescript-core/debugger/dom-node.d.ts
vendored
7
nativescript-core/debugger/dom-node.d.ts
vendored
@@ -1,6 +1,11 @@
|
||||
import { ViewBase } from "../ui/core/view";
|
||||
import { ViewBase } from "../ui/core/view-base";
|
||||
import { CSSComputedStyleProperty } from "./css-agent";
|
||||
export declare function getNodeById(id: number): DOMNode;
|
||||
declare class WeakRef<T> {
|
||||
constructor(obj: T);
|
||||
get(): T;
|
||||
clear(): void;
|
||||
}
|
||||
export declare class DOMNode {
|
||||
nodeId: any;
|
||||
nodeType: any;
|
||||
|
||||
@@ -2,7 +2,7 @@ import { CSSComputedStyleProperty } from "./css-agent";
|
||||
import { InspectorEvents } from "./devtools-elements-interfaces";
|
||||
|
||||
// Needed for typings only
|
||||
import { ViewBase } from "../ui/core/view";
|
||||
import { ViewBase } from "../ui/core/view-base";
|
||||
|
||||
const registeredDomNodes = {};
|
||||
const ELEMENT_NODE_TYPE = 1;
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"name": "debugger",
|
||||
"main": "debugger",
|
||||
"nativescript": {}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
import * as inspectorCommandTypes from "./InspectorBackendCommands.ios";
|
||||
const inspectorCommands: typeof inspectorCommandTypes = require("./InspectorBackendCommands");
|
||||
|
||||
import * as debuggerDomains from "./debugger";
|
||||
import * as debuggerDomains from ".";
|
||||
|
||||
import { attachCSSInspectorCommandCallbacks } from "./devtools-elements";
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import * as inspectorCommandTypes from "./InspectorBackendCommands.ios";
|
||||
const inspectorCommands: typeof inspectorCommandTypes = require("./InspectorBackendCommands");
|
||||
|
||||
import * as debuggerDomains from "./debugger";
|
||||
import * as debuggerDomains from ".";
|
||||
|
||||
import { attachDOMInspectorEventCallbacks, attachDOMInspectorCommandCallbacks } from "./devtools-elements";
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import * as inspectorCommandTypes from "./InspectorBackendCommands.ios";
|
||||
const inspectorCommands: typeof inspectorCommandTypes = require("./InspectorBackendCommands");
|
||||
|
||||
import * as debuggerDomains from "./debugger";
|
||||
import * as debuggerDomains from ".";
|
||||
|
||||
declare var __inspectorSendEvent;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user