RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/marketplace/definitions/AppInfo.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IApiEndpointMetadata } from '@rocket.chat/apps-engine/definition/api';
import type { AppScreenshot } from '@rocket.chat/core-typings';

import type { ISettings } from '../../../apps/@types/IOrchestrator';
import type { App } from '../types';

export type AppInfo = App & {
    settings?: ISettings;
    apis: Array<IApiEndpointMetadata>;
    screenshots: Array<AppScreenshot>;
};