Files
openclaw/scripts/package-changelog.d.mts
Peter Steinberger 2e2366b6d3 chore(tooling): typecheck scripts/** with a dedicated tsgo lane (#104348)
* feat(tooling): add tsgo typecheck lane for scripts/**

* fix(scripts): burn down scripts type debt surfaced by the new lane

Typing-only except bugs the lane surfaced: gh-read timeout race,
Discord Headers spread dropping entries, undefined allowedHeadBranches
match, plugin-boundary matchAll crash. Deletes retired config keys from
fixtures/benches (prompt snapshots regenerated, config dump only) and
the orphaned non-runnable sync-moonshot-docs script. Adds full-surface
.d.mts declarations for existing .mjs boundaries.
2026-07-11 02:31:17 -07:00

17 lines
517 B
TypeScript

type PackageChangelogOptions = { allowUnreleased?: boolean };
export function resolvePackageChangelogVersions(
packageVersion: string,
options?: PackageChangelogOptions,
): string[];
export function extractCurrentPackageChangelog(
content: string,
packageVersion: string,
options?: PackageChangelogOptions,
): string;
export function restorePackageChangelog(cwd?: string): Promise<boolean>;
export function preparePackageChangelog(
cwd?: string,
options?: PackageChangelogOptions,
): Promise<boolean>;