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

3 lines (2 loc) 120 B
export type Nullable<T> = T | null | undefined; export declare function notEmpty(str: Nullable<string>): str is string;