UNPKG

envase

Version:

Type-safe environment variable validation with Standard Schema compliance

13 lines (12 loc) 350 B
type ValidateMarkdownOutput = { isValid: true; } | { isValid: false; differences: string; }; /** * Validates if a markdown file matches the expected documentation * generated from the environment schema. */ export declare const validateMarkdown: (actualMarkdown: string, expectedMarkdown: string) => ValidateMarkdownOutput; export {};