import type { FileErrorCause } from "./FileErrorCause.js"; /** * A validation error that occurred when attempting to add a file to a store. */ export interface FileError { /** * The path of the invalid file. */ file: string; /** * The reason validation failed. */ cause: FileErrorCause; /** * The validation error message. */ details: string; } //# sourceMappingURL=FileError.d.ts.map