ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
20 lines (16 loc) • 686 B
text/typescript
import { ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild, ViewEncapsulation } from '@angular/core';
import { BooleanInput, InputBoolean } from '@ohayo/util';
({
selector: 'global-footer-item',
exportAs: 'globalFooterItem',
template: ` <ng-template #host><ng-content></ng-content></ng-template> `,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
})
export class GlobalFooterItemComponent {
static ngAcceptInputType_blankTarget: BooleanInput;
('host', { static: true }) host: ElementRef;
() href: string;
() () blankTarget: boolean;
}