mirror of
https://github.com/SethCohen/github-releases-to-discord
synced 2026-09-07 20:03:23 +00:00
7 lines
415 B
TypeScript
7 lines
415 B
TypeScript
import type { PackageJson } from './types.js';
|
|
export type * from './types.js';
|
|
export declare function isNpm(): boolean | undefined;
|
|
export declare function isPnp(): boolean;
|
|
export declare function checkAndPreparePackage(packageName: string, version?: string, checkVersion?: boolean): Promise<void>;
|
|
export declare function checkAndPreparePackage(packageJson: PackageJson, checkVersion?: boolean): Promise<void>;
|