@plugjs/plug
Version:
PlugJS Build System ===================
14 lines • 570 B
TypeScript
import type { AbsolutePath } from '../paths.ts';
export type GithubAnnotationType = 'warning' | 'error';
export interface GithubAnnotationOptions {
type: GithubAnnotationType;
title?: string;
file?: AbsolutePath;
line?: number;
endLine?: number;
col?: number;
endColumn?: number;
}
export declare function githubAnnotation(type: GithubAnnotationType, message: string, ...args: any[]): void;
export declare function githubAnnotation(options: GithubAnnotationOptions, message: string, ...args: any[]): void;
//# sourceMappingURL=github.d.ts.map