UNPKG

rune

Version:

CLI to upload your games to Rune

8 lines (7 loc) 288 B
export interface FileInfo { content?: string | null; path: string; size: number; } export declare function getGameFiles(gameDir: string): Promise<FileInfo[]>; export declare function findShortestPathFileThatEndsWith(files: FileInfo[], fileName: string): FileInfo | undefined;