UNPKG

@deepgram/deepdown-utils

Version:

Utility functions for Deepdown markdown templating

22 lines (21 loc) 517 B
"use strict"; /** * Utility functions for Deepdown markdown templating * @packageDocumentation */ Object.defineProperty(exports, "__esModule", { value: true }); exports.version = void 0; exports.validateTemplate = validateTemplate; /** * Validates a Deepdown template * @param template - The template to validate * @returns Whether the template is valid */ function validateTemplate(template) { // Implementation will go here return true; } /** * Version of the package */ exports.version = '0.0.1';