(decl: {
type: Type<any>;
decorators: any[];
ctorParameters?: () => any[];
propDecorators?: {[field: string]: any};
})
| 48 | * @codeGenApi |
| 49 | */ |
| 50 | export function ɵɵngDeclareClassMetadata(decl: { |
| 51 | type: Type<any>; |
| 52 | decorators: any[]; |
| 53 | ctorParameters?: () => any[]; |
| 54 | propDecorators?: {[field: string]: any}; |
| 55 | }): void { |
| 56 | setClassMetadata( |
| 57 | decl.type, |
| 58 | decl.decorators, |
| 59 | decl.ctorParameters ?? null, |
| 60 | decl.propDecorators ?? null, |
| 61 | ); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Evaluates the class metadata of a component that contains deferred blocks. |
no test coverage detected
searching dependent graphs…