bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
18 lines (17 loc) • 511 B
TypeScript
import BvEvent, { type BvEventConstructorOmittables } from './BvEvent';
/**
* @external
*/
export default class BvModalEvent extends BvEvent {
readonly trigger: string | null;
constructor(eventType: string, eventInit?: Partial<Omit<BvModalEvent, BvEventConstructorOmittables>>);
static get Defaults(): {
trigger: null;
cancelable: boolean;
componentId: null;
eventType: string;
nativeEvent: null;
relatedTarget: null;
target: null;
};
}