chore: Update the backups

This commit is contained in:
BluJ
2023-04-24 14:07:13 -06:00
parent 0be8d9d5bc
commit 75ec297be1
7 changed files with 271 additions and 168 deletions

View File

@@ -0,0 +1,8 @@
import { GenericManifest } from "./ManifestTypes";
export function setupManifest<
M extends GenericManifest & { id: Id },
Id extends string,
>(manifest: M): M {
return manifest;
}