You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
TypeScript
16 lines
402 B
TypeScript
import { ElementRef } from '@angular/core';
|
|
import { BlockableUI } from '../common/blockableui';
|
|
export declare class Card implements BlockableUI {
|
|
private el;
|
|
header: string;
|
|
subheader: string;
|
|
style: any;
|
|
styleClass: string;
|
|
headerFacet: any;
|
|
footerFacet: any;
|
|
constructor(el: ElementRef);
|
|
getBlockableElement(): HTMLElement;
|
|
}
|
|
export declare class CardModule {
|
|
}
|