Files
stash/ui/v2.5/src/docs/en/ReleaseNotes/index.ts
WithoutPants cfc8222b9a [Files Refactor] Cleanup (#2893)
* Clean up notes for develop merge
* Remove commented code
* Lint
2022-09-07 16:50:15 +10:00

17 lines
278 B
TypeScript

import v0170 from "./v0170.md";
export type Module = typeof v0170;
interface IReleaseNotes {
// handle should be in the form of YYYYMMDD
date: number;
content: Module;
}
export const releaseNotes: IReleaseNotes[] = [
{
date: 20220906,
content: v0170,
},
];