Utility type to provide your interface with an index signature.
import { Showpad } from '@showpad/experience-app-sdk'type PotatoType = { color: string}interface PotatoInterface { color: string}await Showpad.getStoreEntries<PotatoType>('potato-store')await Showpad.getStoreEntries<Showpad.ToScalar<PotatoInterface>>('potato-store') Copy
import { Showpad } from '@showpad/experience-app-sdk'type PotatoType = { color: string}interface PotatoInterface { color: string}await Showpad.getStoreEntries<PotatoType>('potato-store')await Showpad.getStoreEntries<Showpad.ToScalar<PotatoInterface>>('potato-store')
Generated using TypeDoc
Utility type to provide your interface with an index signature.
Example