RocketChat/Rocket.Chat

View on GitHub
packages/apps/src/converters/IAppSettingsConverter.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { ISetting } from '@rocket.chat/core-typings';

import type { IAppsSetting } from '../AppsEngine';

export interface IAppSettingsConverter {
    convertById(settingId: ISetting['_id']): Promise<IAppsSetting>;
    convertToApp(setting: ISetting): IAppsSetting;
}