ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
28 lines (25 loc) • 858 B
text/typescript
import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation } from '@angular/core';
import { BooleanInput, InputBoolean } from '@ohayo/util';
export class TrendComponent {
static ngAcceptInputType_colorful: BooleanInput;
static ngAcceptInputType_reverseColor: BooleanInput;
/** 上升下降标识 */
flag: 'up' | 'down';
/** 是否彩色标记 */
colorful = true;
/** 颜色反转 */
reverseColor = false;
}