UNPKG

github-action-readme-generator

Version:

The docs generator for GitHub Actions. Auto-syncs action.yml to README.md with 8 sections: inputs, outputs, usage, badges, branding & more. Works as CLI or GitHub Action.

9 lines (8 loc) 258 B
/** * Type guard to check if an `unknown` value is an `Error` object. * * @param value - The value to check. * * @returns `true` if the value is an `Error` object, otherwise `false`. */ export declare const isError: (value: unknown) => value is Error;