declare const httpPlaceList: readonly ["query", "path", "body", "header", "xform", "redirectUrl"]; /** * the http request place * * @TJS-type string * enum ["query", "path", "body", "header"] */ export declare type IHttpPlace = typeof httpPlaceList[number]; export declare const isIHttpPlace: (t: any) => t is "body" | "header" | "path" | "query" | "xform" | "redirectUrl"; export {};