hardhat-forta
Version:
Forta Agent Hardhat Plugin
21 lines (18 loc) • 321 B
text/typescript
export interface RepositoryTreeNode {
path: string;
mode: string;
type: string;
sha: string;
size?: number;
url: string;
}
export interface RepositoryTree {
sha: string;
url: string;
tree: RepositoryTreeNode[];
truncated: boolean;
}
export interface DirectoryFile {
path: string;
url: string;
}