UNPKG

pb-to-ts-api

Version:

help you transfer protobuf file to your custom d.ts and api request method

6 lines (4 loc) 222 B
import { RequestMethods } from '../interfaces/RequestMethods'; export function getRequestMethod(apiName: string): RequestMethods { return /post/.test(apiName.toLowerCase()) ? RequestMethods.post : RequestMethods.get; }