UNPKG

@skillbill/vuelace-3

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/@skillbill%2Fvuelace-3.svg)](https://badge.fury.io/js/@skillbill%2Fvuelace-3)

10 lines (8 loc) 342 B
import { SlAfterShowEvent, SlHideEvent, SlShowEvent, SlAfterHideEvent } from '../utils/types'; export interface VLExpansionCardProps { title?: string; onShow?: (evt: SlShowEvent) => void; onHide?: (evt: SlHideEvent) => void; onAfterShow?: (evt: SlAfterShowEvent) => void; onAfterHide?: (evt: SlAfterHideEvent) => void; }