#!/usr/bin/env node import "dotenv"; export type RequestError = { statusCode: number; errors: { error: string; errors?: string[] | undefined; }[]; }; export declare const isNumber: (num: any) => boolean; export type ChannelDescriptionProps = { fileUrl: string; path?: string; fullChannelPath?: string; requiresAuth?: boolean; descriptionText?: string; requestBodyTypeString?: string; additionalTypes?: string; responseBodyTypeString?: string; descriptionFileFullPath?: string; }; export type RouteDescriptionProps = { fileUrl: string; path?: string; fullRoutePath?: string; requiresAuth?: boolean; descriptionText?: string; method: "ALL" | "GET" | "PUT" | "POST" | "DELETE"; requestParamsTypeString?: string; requestBodyTypeString?: string; requestHeadersTypeString?: string; responseContentType?: string; additionalTypes?: string; responseBodyTypeString?: string; descriptionFileFullPath?: string; }; export type EventDescriptionProps = { fileUrl: string; event: string; rooms?: string[]; descriptionText?: string; eventBodyTypeString: string; additionalTypes?: string; expectedResponseBodyTypeString?: string; descriptionFileFullPath?: string; }; declare const _default: {}; export default _default;