@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
17 lines (13 loc) • 406 B
text/typescript
import { Component, ContentChild, ElementRef } from '@angular/core';
({
standalone: false,
selector: 'custom-foo-bar',
templateUrl: './foo-bar.component.html',
})
export class FooBarComponent {
('heading', { read: ElementRef, static: true })
buttons: ElementRef;
constructor(private elementRef: ElementRef) {}
inlineButtons: any[] = [];
menuButtons: any[] = [];
}