UNPKG

@apexcura/ui-builder

Version:

A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.

9 lines (8 loc) 272 B
interface ResponseData { [x: string]: string | boolean | undefined; status: boolean; token?: string; IS_MAINTENANCE_MODE?: boolean; } export default function postService(url: string, method: string, data: string): Promise<false | ResponseData>; export {};