| 18 | import type { ExportItem } from "../types.js"; |
| 19 | |
| 20 | export interface BrightScriptObserver { |
| 21 | field: string; |
| 22 | handler: string; |
| 23 | scope: "top" | "global" | "other"; |
| 24 | line: number; |
| 25 | } |
| 26 | |
| 27 | export interface ShowScreenCall { |
| 28 | target: string; // variable/expression referenced (e.g. "m.homeView" or "homeView") |
nothing calls this directly
no outgoing calls
no test coverage detected