govuk-angular
Version:
Angular components port of govuk-frontend nunjucks macros.
26 lines (25 loc) • 919 B
TypeScript
import { EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
export declare class GovUKDetailsComponent {
id: string;
name: string;
classes: string;
summaryText: string;
/**
* An event emitted when details is clicked, with the current status
*/
clicked: EventEmitter<any>;
/**
* An event emitted when details is opened.
*/
opened: EventEmitter<any>;
/**
* An event emitted when details is closed
*/
closed: EventEmitter<any>;
status: string;
constructor();
raiseEvents(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<GovUKDetailsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<GovUKDetailsComponent, "govuk-details", never, { "id": "id"; "name": "name"; "classes": "classes"; "summaryText": "summaryText"; }, { "clicked": "clicked"; "opened": "opened"; "closed": "closed"; }, never, ["*"]>;
}