(schemas: MultipleSchemas, search: string, replace: string)
| 766 | }) |
| 767 | |
| 768 | function replaceInSchemas(schemas: MultipleSchemas, search: string, replace: string): MultipleSchemas { |
| 769 | return schemas.map(([path, content]) => [path, content.replace(search, replace)]) |
| 770 | } |