ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
25 lines (21 loc) • 642 B
text/typescript
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
import { LoadingCustom, LoadingIcon, LoadingShowOptions } from './loading.types';
export class LoadingDefaultComponent {
options: LoadingShowOptions;
get icon(): LoadingIcon {
return this.options.icon!;
}
get custom(): LoadingCustom {
return this.options.custom!;
}
}