card.d.ts 402 B

123456789101112131415
  1. import { ElementRef } from '@angular/core';
  2. import { BlockableUI } from '../common/blockableui';
  3. export declare class Card implements BlockableUI {
  4. private el;
  5. header: string;
  6. subheader: string;
  7. style: any;
  8. styleClass: string;
  9. headerFacet: any;
  10. footerFacet: any;
  11. constructor(el: ElementRef);
  12. getBlockableElement(): HTMLElement;
  13. }
  14. export declare class CardModule {
  15. }