shellcheck
Version:
Wrapper to download shellcheck
18 lines (17 loc) • 410 B
TypeScript
/// <reference types="node" />
/**
* ShellCheck Platform arguments.
*/
export type ShellCheckPlatformArgs = {
/**
* Platform.
*/
platform?: NodeJS.Platform;
};
/**
* Convert platform to ShellCheck platform.
*
* @param args - Arguments.
* @returns ShellCheck platform.
*/
export declare function shellCheckPlatform(args?: ShellCheckPlatformArgs): import("../types").ShellCheckPlatform;