LintOptions
Interface: LintOptions
Defined in: src/testing/model/lint.ts:67
Properties
externalKeys?
optionalexternalKeys?:string[]
Defined in: src/testing/model/lint.ts:80
Keys supplied from OUTSIDE the graph's own writes (a server push, a store the app seeds, a parent app). Listed here they count as producible, so a guard over them is not flagged as dangling.
initialState?
optionalinitialState?:string[] |Record<string,unknown>
Defined in: src/testing/model/lint.ts:74
The keys (or a sample object) the app guarantees before any action runs — the initial projected state. Supplying it lets the linter PROMOTE "gated on a key nothing produces" from a warning to an error: with the initial world known, an unproducible key is provably dead.
startPage?
optionalstartPage?:string
Defined in: src/testing/model/lint.ts:82
Which page the app starts on (default: the first declared page).