chore: reformat code style

This commit is contained in:
Seijo Cecilia
2024-08-26 14:52:05 +08:00
parent 3ec0edfc60
commit 7671174a96
60 changed files with 295 additions and 237 deletions

View File

@@ -4,6 +4,7 @@ import CanSendRecord from './CanSendRecord';
interface ReturnType {
yes: boolean;
}
export default class CanSendImage extends CanSendRecord {
actionName = ActionName.CanSendImage;
}

View File

@@ -6,7 +6,7 @@ export class GetCSRF extends BaseAction<any, any> {
async _handle(payload: any) {
return {
token: "",
token: '',
};
}
}