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.

11 lines (10 loc) 320 B
/** * Log types: * - I: For development debugging * - S: For successful operations * - W: For warning messages * - E: For error messages */ export type LogType = 'I' | 'W' | 'E' | 'S'; export declare function log(type: LogType, message: string): void; export declare const formatError: (error: unknown) => string;