mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-12 12:38:06 +00:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
interface Options {
|
|
exitCode: number;
|
|
message: (version: string) => string;
|
|
}
|
|
|
|
declare function pleaseUpgradeNode(
|
|
pkg: Record<string, unknown>,
|
|
opts?: Partial<Options>
|
|
): void;
|
|
|
|
export = pleaseUpgradeNode;
|