You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docs say that the following should be allowed:
config={{
soundcloud: {
preload: true,
}
}
This actually does work, but in typescript it gives a compilation error since SoundCloudConfig does not contain preload?: boolean in index.d.ts. (You can obviously work around it by casting config as any as a temp solution.)
The text was updated successfully, but these errors were encountered:
The docs say that the following should be allowed:
This actually does work, but in typescript it gives a compilation error since
SoundCloudConfig
does not containpreload?: boolean
inindex.d.ts
. (You can obviously work around it by castingconfig
asany
as a temp solution.)The text was updated successfully, but these errors were encountered: