@svelteuidev/actions
Advanced tools
Comparing version 0.2.6 to 0.2.7
{ | ||
"name": "@svelteuidev/actions", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "@sveltejs/kit": "next", |
@@ -1,22 +0,11 @@ | ||
export type Action = ( | ||
node: HTMLElement, | ||
parameters?: any | ||
) => { | ||
update?: (parameters: any) => void; | ||
destroy?: () => void; | ||
export declare type Action = (node: HTMLElement, parameters?: any) => { | ||
update?: (parameters: any) => void; | ||
destroy?: () => void; | ||
}; | ||
export interface UnknownKeyString<T> { | ||
[key: string]: T; | ||
[key: string]: T; | ||
} | ||
export interface UnknownKeyNumber<T> { | ||
[key: number]: T; | ||
[key: number]: T; | ||
} | ||
export type FocusableElement = | ||
| HTMLInputElement | ||
| HTMLSelectElement | ||
| HTMLTextAreaElement | ||
| HTMLAnchorElement | ||
| HTMLButtonElement | ||
| HTMLAreaElement; | ||
export declare type FocusableElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement | HTMLAnchorElement | HTMLButtonElement | HTMLAreaElement; |
6692
15
144