mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2026-02-11 08:49:21 +00:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { TagFormatter } from "../formatting/TagFormatter";
|
|
import { ReleaseInformation } from "./ReleaseInformation";
|
|
|
|
export interface LastReleaseResolver {
|
|
ResolveAsync(
|
|
current: string,
|
|
tagFormatter: TagFormatter,
|
|
): Promise<ReleaseInformation>;
|
|
}
|