export type AppSlotsProps = {
appId: string;
idOnly?: boolean; // if true, response includes slotIds only
};
const slots = await assetlayer.apps.slots({
appId: 'appId'
});
const slotIds = await assetlayer.apps.slots({
appId: 'appId',
idOnly: true
});
type ReturnType = SlotWithExpressions[] | string[];