UNPKG

@syntropysoft/praetorian

Version:

Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.

8 lines 346 B
import { AbstractFileAdapter } from '../base/AbstractFileAdapter'; export declare class YamlFileAdapter extends AbstractFileAdapter { canHandle(filePath: string): boolean; read(filePath: string): Promise<Record<string, any>>; getFormat(): string; getSupportedExtensions(): string[]; } //# sourceMappingURL=YamlFileAdapter.d.ts.map