Get the slots and slot details for a given app
export type GetAppSlotsProps = { appId: string; };
const slots = await assetlayer.apps.getAppSlots({ appId: 'appId' });
type ReturnType = SlotWithExpressions[];
Last updated 1 year ago