完成登录功能。
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-03-02 15:48:44
|
||||
* @Date: 2023-04-27 15:29:10
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/test/test.ts
|
||||
* @Description:
|
||||
@@ -8,33 +8,6 @@
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
import { queryDepartmentArchievement } from "../utils/archievement.js";
|
||||
import { loginTestCaller } from "./requestTest.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,
|
||||
};
|
||||
|
||||
console.log( "test" );
|
||||
|
||||
const gainers: Array<string | number> = ["kane", 588,];
|
||||
|
||||
const kane = { a: 100, b: 200, };
|
||||
loginTestCaller();
|
||||
|
Reference in New Issue
Block a user