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