保存进度!

This commit is contained in:
2023-03-31 18:07:06 +08:00
parent 4ffe05ee95
commit 3f98fac660
4 changed files with 4770 additions and 4747 deletions

View File

@@ -9,3 +9,26 @@
*/
import { queryDepartmentArchievement } from "../utils/archievement.js";
interface Cat
{
name: string;
purrs: boolean;
};
interface Dog
{
// name: string;
barks: true;
wags: true;
}
type CatOrDog = Cat | Dog;
const animal: CatOrDog =
{
name: "kaka",
purrs: true,
barks: true,
wags: true,
};