Files
huskies/src/types.ts
T

16 lines
234 B
TypeScript
Raw Normal View History

2025-12-24 16:59:14 +00:00
export interface FileEntry {
name: string;
kind: "file" | "dir";
}
export interface SearchResult {
path: string;
matches: number;
}
export interface CommandOutput {
stdout: string;
stderr: string;
exit_code: number;
}