legal-markdown-js
Version:
Node.js implementation of LegalMarkdown for processing legal documents with markdown and YAML - Complete feature parity with Ruby version
33 lines • 952 B
TypeScript
/**
* Installation Detection Utilities
*
* Utilities to detect whether legal-markdown-js is installed globally
* or locally, and determine the appropriate configuration file location.
*
* @module
*/
/**
* Check if the current execution is from a global installation
*
* @returns True if running from global installation
*/
export declare function isGlobalInstallation(): boolean;
/**
* Get the appropriate configuration directory path
*
* @returns Path where configuration files should be stored
*/
export declare function getConfigDirectory(): string;
/**
* Get the full path for .env configuration file
*
* @returns Full path to .env file
*/
export declare function getEnvFilePath(): string;
/**
* Get installation type description for user messages
*
* @returns Human-readable description of installation type
*/
export declare function getInstallationDescription(): string;
//# sourceMappingURL=installation-detector.d.ts.map