@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
21 lines • 527 B
TypeScript
/**
* This type represents the options that you can pass to the serve task.
*/
export interface TaskServeOptions {
/**
* The directory to serve
*/
dir: string;
}
/**
* Returns the string for the bash command to run
* serve with default configuration.
*
* @param options - The options applied when running serve.
*
* @example serve({ dir: './coverage' })
*
* @returns The bash command string.
*/
export declare const serve: (options: TaskServeOptions) => string;
//# sourceMappingURL=serve.d.ts.map