astro-ghostcms/.pnpm-store/v3/files/87/70d7dcac3d2d3b19e39ecc7cbb5...

14 lines
261 B
Plaintext

import { VersionType, PreState } from "@changesets/types";
export type InternalRelease = {
name: string;
type: VersionType;
oldVersion: string;
changesets: string[];
};
export type PreInfo = {
state: PreState;
preVersions: Map<string, number>;
};