(objects: {
[key: string]: new (...args: any) => any },
)
| 1 | import { catalogue } from './catalogue'; |
| 2 | |
| 3 | export function extend(objects: { |
| 4 | [key: string]: new (...args: any) => any }, |
| 5 | ) |
| 6 | { |
| 7 | Object.assign(catalogue, objects); |
| 8 | } |
no outgoing calls
no test coverage detected