mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import { FilesMatch } from './FilesMatch';
|
|
import { Issue } from '../issue';
|
|
interface Report {
|
|
getDependencies(): Promise<FilesMatch>;
|
|
getIssues(): Promise<Issue[]>;
|
|
close(): Promise<void>;
|
|
}
|
|
export { Report };
|