UNPKG

yaml-cfn

Version:

Parser and schema for CloudFormation YAML template tags.

9 lines (5 loc) 187 B
// Type definitions for yaml-cfn. import {Schema} from "js-yaml"; export const schema: Schema; export function yamlParse(str: string): any; export function yamlDump(obj: any): string;