MCPcopy
hub / github.com/handsontable/handsontable / VersionEntry

Interface VersionEntry

docs/src/components/VersionComparison/types.ts:5–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3export type Framework = 'core' | 'react' | 'angular' | 'vue';
4
5export interface VersionEntry {
6 version: string;
7 releaseDate: string | null;
8 category: ChangeCategory;
9 breaking: boolean;
10 framework: Framework;
11 prNumber: number | null;
12 prKind: 'issues' | 'pull' | null;
13 title: string;
14 highlighted: boolean;
15 tagline?: string;
16 whyItMatters?: string;
17 codeBefore?: string;
18 codeAfter?: string;
19 migrationAnchor?: string;
20}
21
22export interface ReleaseSummary {
23 version: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…