꼬이네..
This commit is contained in:
@@ -11,10 +11,14 @@ class Q implements QType {
|
||||
username!: string;
|
||||
password!: string;
|
||||
}
|
||||
export class LoginByID extends POST<RType, EType, QType>{
|
||||
|
||||
const procDecorator = [] as const;
|
||||
|
||||
export class LoginByID extends POST<RType, EType, QType, typeof procDecorator>{
|
||||
readonly argValidator = Q;
|
||||
readonly procDecorator = procDecorator;
|
||||
protected LoginByID = Symbol("LoginByID");//TODO: remove this
|
||||
protected override async api(query: QType): Promise<RType | EType | true> {
|
||||
protected override async api(query: QType, ctx,): Promise<RType | EType | true> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user