chore: mv mask code to folder

This commit is contained in:
Simon
2026-01-13 17:35:24 +08:00
parent b6232d4e21
commit aa5909264a
5 changed files with 1 additions and 1 deletions

View File

@@ -6,7 +6,6 @@
* Designed to be independent of LLM and can be tested in unit tests. * Designed to be independent of LLM and can be tested in unit tests.
* All public methods are async for potential remote calling support. * All public methods are async for potential remote calling support.
*/ */
import { SimulatorMask } from './SimulatorMask'
import { import {
clickElement, clickElement,
getElementByIndex, getElementByIndex,
@@ -19,6 +18,7 @@ import { VIEWPORT_EXPANSION } from './constants'
import * as dom from './dom' import * as dom from './dom'
import type { FlatDomTree, InteractiveElementDomNode } from './dom/dom_tree/type' import type { FlatDomTree, InteractiveElementDomNode } from './dom/dom_tree/type'
import { getPageInfo } from './dom/getPageInfo' import { getPageInfo } from './dom/getPageInfo'
import { SimulatorMask } from './mask/SimulatorMask'
import { patchReact } from './patches/react' import { patchReact } from './patches/react'
export { SimulatorMask } export { SimulatorMask }