1 | /** Array of paths that are invalid */
|
2 | export type Paths = string[];
|
3 | /** Whether or not the directory was valid */
|
4 | export type ValidateResult = [valid: false, invalidRelativePaths: Paths, relativePaths: Paths] | [valid: true, invalidRelativePaths: [], relativePaths: Paths];
|
5 | /** Validate a directory and its descendants */
|
6 | export default function validate(fullPath: string): Promise<ValidateResult>;
|
7 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |