UNPKG

yaml-js-include

Version:

Extension for yaml-js library to be able to include files/directories in yaml files

9 lines (8 loc) 290 B
import * as yaml from 'js-yaml'; import { YamlInclude } from './include'; /** * Gets a schema for including files * @param yamlInclude YAML include object * @returns {yaml.Type} YAML type for a schema */ export declare const getFileIncludeType: (yamlInclude: YamlInclude) => yaml.Type;