Interface CheckResults

Objet retourné par les fonctions validate

interface CheckResults {
    errors: string[];
    ok: boolean;
    warnings: string[];
}

Properties

Properties

errors: string[]
ok: boolean
warnings: string[]