vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
25 lines (21 loc) • 504 B
text/typescript
/**
* An accordion section is a single section that’s nested in a slds-accordion component.
*/
export interface AccordionSection {
/**
* The content in the accordion section.
*/
content: string;
/**
* Section ID
*/
id: string
/**
* The text that displays as the title of the section.
*/
label: string;
/**
* The unique section name to use with the active-section-name attribute in the accordion component.
*/
name: string;
}