Files
dealplustech/dealplustech-astro/node_modules/astro/dist/env/errors.d.ts
2026-03-02 12:35:14 +07:00

8 lines
263 B
TypeScript

import type { ValidationResultErrors } from './validators.js';
export interface InvalidVariable {
key: string;
type: string;
errors: ValidationResultErrors;
}
export declare function invalidVariablesToError(invalid: Array<InvalidVariable>): string[];