summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/workers/parser/tests/fixtures/scopes/flowtype-bindings.js
blob: 385797c044cd26e00aa9268e9646849d97a34028 (plain)
1
2
3
4
5
6
7
8
9
10
11
import type { One, Two, Three } from "./src/mod";

type Other = {
  root: typeof root,
};

const aConst = (window: Array<string>);

export default function root() {

}