UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

16 lines (15 loc) 384 B
export interface IOAuthApp { id: string; name: string; active: boolean; clientId?: string; clientSecret?: string; redirectUri: string; createdAt?: string; updatedAt?: string; createdBy: { username: string; id: string; }; } export type IOAuthAppParams = Omit<IOAuthApp, 'id' | 'createdAt' | 'updatedAt' | 'createdBy' | 'appId'>;