bapig
Version:
Welcome to BAPIG, a powerful backend solution designed to streamline your development process. With over 40 built-in functionalities, BAPIG simplifies CRUD operations, facilitates authentication and encryption, handles communication tasks, and much more.
9 lines (8 loc) • 420 B
TypeScript
import { controllerResponse } from '../types';
/**
* Function to retrieve a single table schema by its filename.
* @param {string} fileName - The name of the schema file.
* @returns {controllerResponse} Returns success and message containing the schema if successful; otherwise, returns an error message.
*/
declare function getSingleSchema(fileName: string): controllerResponse;
export { getSingleSchema };