@tricoteuses/assemblee
Version:
Retrieve, clean up & handle French Assemblée nationale's open data
17 lines (16 loc) • 612 B
TypeScript
/**
* Prints a delimiter to the console if the `silent` parameter is falsy.
*
* @param {boolean} silent - If true, the delimiter will not be printed.
*/
export declare function delimiter(silent?: boolean): void;
/**
* Prints the given function if the `silent` flag is not set to `true`.
*
* @param {void} printFunction - The function to be printed.
* @param {{ silent: boolean }} [options] - An optional object containing the `silent` flag.
* @return {void} This function does not return anything.
*/
export declare function runLogFun(printFunction: void, { silent }?: {
silent: boolean;
}): void;