fluent-svelte-updated
Version:
Forked from https://github.com/vegardlarsen/fluent-svelte. A faithful implementation of Microsoft's Fluent Design System in Svelte.
15 lines (14 loc) • 393 B
TypeScript
declare namespace svelte.JSX {
interface HTMLAttributes<T> {
onouterclick?: () => void;
onoutercontextmenu?: () => void;
onouterdblclick?: () => void;
onoutermousedown?: () => void;
onoutermouseenter?: () => void;
onoutermouseleave?: () => void;
onoutermousemove?: () => void;
onoutermouseout?: () => void;
onoutermouseover?: () => void;
onoutermouseup?: () => void;
}
}