UNPKG

@cmk/fe_utils

Version:
10 lines (8 loc) 563 B
import { AppController } from '../../types'; import { BodyParam } from '../../types/bodyParam'; import { Header } from '../../types/Header'; import { Param } from '../../types/param'; export declare const queryAction: (appController: AppController, actionId: string, method: string, url: string, use_cookies: boolean, payload?: BodyParam[], headers?: Header[], params?: Param[], response_type?: string, basicAuth?: { username: string; password: string; }, placeholders?: Record<string, string>) => Promise<import('../../..').QueryResponseType<unknown>>;