props-bindable
Simon Holthausen 6 months ago
parent 7557c8f756
commit f05e1dbf6c

@ -708,7 +708,8 @@ declare module 'svelte/compiler' {
node: Identifier;
/**
* - `normal`: A variable that is not in any way special
* - `prop`: A normal prop (possibly mutated)
* - `prop`: A normal prop (possibly reassigned)
* - `bindable_prop`: A prop one can `bind:` to (possibly reassigned or mutated)
* - `rest_prop`: A rest prop
* - `state`: A state variable
* - `derived`: A derived variable
@ -720,6 +721,7 @@ declare module 'svelte/compiler' {
kind:
| 'normal'
| 'prop'
| 'bindable_prop'
| 'rest_prop'
| 'state'
| 'frozen_state'

Loading…
Cancel
Save