bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
26 lines (25 loc) • 600 B
TypeScript
import { Component } from 'vue';
/**
* @external
*/
export default class BvEvent {
cancelable: boolean;
componentId: string | null;
defaultPrevented: boolean;
nativeEvent: any;
preventDefault: () => void;
relatedTarget: any;
target: any;
eventType: string;
vueTarget: Component | null;
constructor(eventType: string, eventInit?: {});
static get Defaults(): {
eventType: string;
cancelable: boolean;
nativeEvent: null;
target: null;
relatedTarget: null;
vueTarget: null;
componentId: null;
};
}