UNPKG

@yuki-no/plugin-sdk

Version:

A GitHub Action that tracks changes between repositories. It creates GitHub issues based on commits from a head repository, making it ideal for documentation translation projects.

6 lines (5 loc) 410 B
export declare function getInput(name: string): string | undefined; export declare function getInput(name: string, defaultValue: string): string; export declare const getBooleanInput: (name: string, defaultValue?: boolean) => boolean; export declare const getMultilineInput: (name: string, defaultValue?: string[]) => string[]; export declare const splitByNewline: (text?: string, trim?: boolean) => string[];