Skip to content

Commit

Permalink
Build sources
Browse files Browse the repository at this point in the history
  • Loading branch information
dgellow committed Aug 25, 2023
1 parent e8b30ed commit 259fd12
Show file tree
Hide file tree
Showing 699 changed files with 37,508 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build/src/bin/release-please.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env node
import * as yargs from 'yargs';
interface ErrorObject {
body?: object;
status?: number;
message: string;
stack: string;
}
export declare const parser: yargs.Argv<{
debug: boolean;
} & {
trace: boolean;
} & {
plugin: (string | number)[] | never[];
}>;
interface HandleError {
(err: ErrorObject): void;
logger?: Console;
yargsArgs?: yargs.Arguments;
}
export declare const handleError: HandleError;
export {};
Loading

0 comments on commit 259fd12

Please sign in to comment.