UNPKG

@storm-software/untyped

Version:

A package containing `untyped` utilities for building Storm Software libraries and applications

13 lines (10 loc) 320 B
import { Path } from 'glob'; /** * Get the output file for the schema file * * @param file - The schema file * @param extension - The extension of the output file * @returns The output file path */ declare const getOutputFile: (file: Path, extension: "json" | "d.ts" | "md") => string; export { getOutputFile };