| 2 | import { Class } from './types.js'; |
| 3 | |
| 4 | export interface RegisterOptions { |
| 5 | identifier?: string; |
| 6 | allowProps?: string[]; |
| 7 | } |
| 8 | |
| 9 | export class ClassRegistry extends Registry<Class> { |
| 10 | constructor() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…