@whimsbuilder/ui
Advanced tools
Comparing version 0.0.1 to 0.0.2
/** @typedef {typeof __propDef.props} ButtonProps */ | ||
/** @typedef {typeof __propDef.events} ButtonEvents */ | ||
/** @typedef {typeof __propDef.slots} ButtonSlots */ | ||
export default class Button extends SvelteComponentTyped<{}, { | ||
export default class Button extends SvelteComponentTyped<{ | ||
[x: string]: any; | ||
}, { | ||
[evt: string]: CustomEvent<any>; | ||
@@ -15,3 +17,5 @@ }, { | ||
declare const __propDef: { | ||
props: {}; | ||
props: { | ||
[x: string]: any; | ||
}; | ||
events: { | ||
@@ -18,0 +22,0 @@ [evt: string]: CustomEvent<any>; |
{ | ||
"name": "@whimsbuilder/ui", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "devDependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1515
43