norminette-mcp
Version:
MCP server for 42 School norminette coding standard checker
15 lines (14 loc) • 404 B
TypeScript
export interface SystemInfo {
username: string;
email: string;
currentTime: string;
}
/**
* Get all system information needed for 42 header generation
*/
export declare function getSystemInfo(): Promise<SystemInfo>;
/**
* Get file creation time if available
* Falls back to current time if not available
*/
export declare function getFileCreationTime(filePath: string): Promise<string>;