We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@alexprey As you said, the typings should be updated to match the actual api.
First thing I found is :
export interface SvelteDataItem extends ISvelteItem { // ... /** * The default value of property, if provided. */ value?: any; // ... }
but the exported key is actually defaultValue (see the example Button).
defaultValue
Which one should be kept?
The text was updated successfully, but these errors were encountered:
Thanks for that catch, I'm fix it. And also update the API for default value of optional parameter
Sorry, something went wrong.
I just saw you pushed modifications for the typings, but I made a mistake when I renamed SvelteMethodArgumentItem to SvelteMethodParamItem.
SvelteMethodArgumentItem
SvelteMethodParamItem
It should be:
/** * @deprecated */ export type SvelteMethodArgumentItem = SvelteMethodParamItem;
and you can delete type SvelteArgItem and type SvelteArgumentItem, I added them by mistake in #40, so they were never released.
type SvelteArgItem
type SvelteArgumentItem
Ok, thanks for note about that, I'm remove this types from typings file.
alexprey
No branches or pull requests
@alexprey As you said, the typings should be updated to match the actual api.
First thing I found is :
but the exported key is actually
defaultValue
(see the example Button).Which one should be kept?
The text was updated successfully, but these errors were encountered: