@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
21 lines • 589 B
TypeScript
/**
* This type represents the options that you can pass to the typedoc task.
*/
export interface TaskPrettifyOptions {
/**
* The files on which to run prettier.
*/
files: string;
}
/**
* Returns the string for the bash command to run
* prettier with the gobstones-script detected configuration.
*
* @param options - The options applied when running typedoc.
*
* @example prettier({ files: './src/** /*' })
*
* @returns The bash command string.
*/
export declare const prettify: (options: TaskPrettifyOptions) => string;
//# sourceMappingURL=prettify.d.ts.map