express.js 준비

This commit is contained in:
2023-08-06 13:53:12 +00:00
parent 691f5e79ce
commit 69de10642e
4 changed files with 20 additions and 36 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ type EType = ExtractError<BaseAPI>;
type QType = ExtractQuery<BaseAPI>;
class Q implements QType {
username: string;
password: string;
username!: string;
password!: string;
}
export class LoginByID extends POST<RType, EType, QType>{
readonly argValidator = undefined;