UNPKG

manifest

Version:

The backend for AI code editors

11 lines (10 loc) 274 B
import { HttpMethod } from '../common/HttpMethod'; import { PolicyManifest } from '../manifests'; export interface EndpointManifest { name: string; path: string; method: HttpMethod; description: string; handler: string; policies: PolicyManifest[]; }