UNPKG

github-action-readme-generator

Version:

This is a CLI tool and GitHub Action that reads in the details from a GitHub Action's `action.yml` file and updates the `README.md` file with the `name`, `description`, `usage`, `inputs`, `outputs`, and examples of the action. Configuration can be provid

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;