UNPKG

@rocket.chat/apps-engine

Version:

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

10 lines (9 loc) 224 B
import type { IApiExample } from './IApiExample'; export interface IApiEndpointMetadata { path: string; computedPath: string; methods: Array<string>; examples?: { [key: string]: IApiExample; }; }