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 docs say that the following should be allowed:
This actually does work, but in typescript it gives a compilation error since
SoundCloudConfigdoes not containpreload?: booleaninindex.d.ts. (You can obviously work around it by castingconfigasanyas a temp solution.)