UNPKG

@microsoft.azure/autorest.testserver

Version:
13 lines (12 loc) 312 B
import { HttpMethod } from "../api"; export interface SpecPath { /** * Path to implement. */ path: string; /** * List of HTTP methods to implement. */ methods: (HttpMethod | "options")[]; } export declare const getPathsFromSpecs: (specPaths: string[]) => Promise<SpecPath[]>;