@masuidrive/ticket
Version:
Real-time ticket tracking viewer with Vite + Express
9 lines • 348 B
TypeScript
import { TicketContent } from './types';
export declare class FileService {
private projectRoot;
constructor(projectRoot?: string);
readTicketFile(filePath?: string): Promise<TicketContent | null>;
fileExists(filePath: string): Promise<boolean>;
getFullPath(filePath: string): string;
}
//# sourceMappingURL=fileService.d.ts.map