ckgroup.directive.d.ts 700 B

123456789101112131415161718192021
  1. import { AfterContentInit, QueryList } from '@angular/core';
  2. import { CKEditorComponent } from './ckeditor.component';
  3. import { CKButtonDirective } from './ckbutton.directive';
  4. /**
  5. * CKGroup component
  6. * Usage :
  7. * <ckeditor [(ngModel)]="data" [config]="{...}" debounce="500">
  8. * <ckgroup [name]="'exampleGroup2'" [previous]="'1'" [subgroupOf]="'exampleGroup1'">
  9. * .
  10. * .
  11. * </ckgroup>
  12. * </ckeditor>
  13. */
  14. export declare class CKGroupDirective implements AfterContentInit {
  15. name: string;
  16. previous: any;
  17. subgroupOf: string;
  18. toolbarButtons: QueryList<CKButtonDirective>;
  19. ngAfterContentInit(): void;
  20. initialize(editor: CKEditorComponent): void;
  21. }