@skillbill/vuelace-3
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/@skillbill%2Fvuelace-3)
10 lines (8 loc) • 342 B
TypeScript
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;
}