@kushki/ng-suka
Version:
<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>
18 lines (17 loc) • 562 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { IconType } from '../icon/icon-types';
export declare class Banner implements OnInit {
statusIcon: IconType;
hide: boolean;
animationState: 'default' | 'closing';
title: any;
status: 'default' | 'info' | 'success' | 'attention' | 'alert';
dismissable: boolean;
actionLabel: string;
action: EventEmitter<any>;
dismiss: EventEmitter<any>;
ngOnInit(): void;
onAction(): void;
onClose(event?: any): void;
onFadeFinished(event: AnimationEvent): void;
}