vcpkg-tool/vcpkg-artifacts/interfaces/validation.ts

14 строки
275 B
TypeScript

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { ValidationMessage } from './validation-message';
export interface Validation {
/**
* @internal
*
* actively validate this node.
*/
validate(): Iterable<ValidationMessage>;
}