mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 04:25:21 -04:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
/// <reference types="node" />
|
|
|
|
/**
|
|
* @returns A promise of the absolute path to the Hugo executable (`hugo.exe` on
|
|
* Windows, simply `hugo` otherwise) once it's installed.
|
|
*/
|
|
export default function hugo(): Promise<string>;
|