| 18 | |
| 19 | type FeatureId = string & {feature: true}; |
| 20 | interface FeatureMeta { |
| 21 | id: FeatureId; |
| 22 | description: string; |
| 23 | screenshot: string | null; // eslint-disable-line @typescript-eslint/no-restricted-types -- We use `null` in the JSON file |
| 24 | css?: true; |
| 25 | cssOnly?: true; |
| 26 | } |
| 27 | |
| 28 | // These types are unnecessarily loose |
| 29 | // https://dom.spec.whatwg.org/#dom-node-textcontent |
nothing calls this directly
no outgoing calls
no test coverage detected