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