skuRecommendationPage & azdata change (#11863)

* skuRecommendationPage

* fix
This commit is contained in:
Amir Omidi
2020-08-19 13:04:08 -07:00
committed by GitHub
parent 97b6d71a06
commit d2e4eeac88
9 changed files with 244 additions and 34 deletions

4
src/sql/azdata.d.ts vendored
View File

@@ -2733,8 +2733,8 @@ declare module 'azdata' {
focus(): Thenable<void>;
}
export interface FormComponent {
component: Component;
export interface FormComponent<T extends Component = Component> {
component: T;
title: string;
actions?: Component[];
required?: boolean;