Remove async keyword from abstract functions (#14150)

This commit is contained in:
Charles Gagnon
2021-02-03 12:16:50 -08:00
committed by GitHub
parent 52a642f351
commit dcf17cc08b
8 changed files with 12 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ export abstract class ResourceTypeModel extends Model {
}
abstract initialize(): void;
abstract async onOk(): Promise<void>;
abstract onOk(): Promise<void>;
abstract onCancel(): void;
/**
* performs the script generation and returns true if script was generated successfully