getAppSlotIds()
Get the slotIds for a given app
Parameters
export type GetAppSlotsProps = {
appId: string;
};
Examples
const slotIds = await assetlayer.apps.getAppSlotIds({
appId: 'appId'
});
Return Types
type ReturnType = string[];
Alternatives
slots()Last updated