mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-11 05:23:51 +01:00
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
interface FilesMatch {
|
|
files: string[];
|
|
dirs: string[];
|
|
excluded: string[];
|
|
extensions: string[];
|
|
}
|
|
export { FilesMatch };
|