Last updated 1 year ago
Get details of an array of apps
export type GetAppsProps = { appId: string[]; };
const apps = await assetlayer.apps.info({ appIds: ['appId_1', 'appId_2'] });
type ReturnType = App[];