a2r
Version:
A2R Framework
9 lines (8 loc) • 319 B
TypeScript
import { ModuleInfo } from '../../model/api';
/**
* Gets module info from a file
* @param filePath Module file path
* @param apiSourcePath API source path (used for relative path)
*/
declare const getModuleInfo: (filePath: string, apiSourcePath: string) => Promise<ModuleInfo | null>;
export default getModuleInfo;