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

@@ -7,5 +7,5 @@ import * as azdata from 'azdata';
export abstract class AssessmentDialogComponent {
abstract async createComponent(view: azdata.ModelView): Promise<azdata.Component>;
abstract createComponent(view: azdata.ModelView): Promise<azdata.Component>;
}