| 18 | import intro from './locales/english/intro.json'; |
| 19 | |
| 20 | interface Intro { |
| 21 | [key: string]: { |
| 22 | title: string; |
| 23 | summary?: string[]; |
| 24 | intro: string[]; |
| 25 | blocks: { |
| 26 | [block: string]: { |
| 27 | title: string; |
| 28 | intro: string[]; |
| 29 | }; |
| 30 | }; |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | const filesThatShouldExist = [ |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected