database-to-interfaces
Version:
create database interfaces to typesscript
12 lines (11 loc) • 411 B
TypeScript
/**
* function to save the interface file.
* @param fileContent
* @param params
* @param params.fileName - The name of the file to save. Defaults to 'interface.json'.
* @param params.filePath - The path where the file will be saved. Defaults to './interfaces/'.
*/
export declare function saveInterfaceFile(fileContent: string, params?: {
fileName?: string;
filePath?: string;
}): Promise<void>;