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.

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