mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
ML - dashboard icons and links (#10153)
* ML - dashboard icons and links
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
/**
|
||||
* The model for package config value
|
||||
*/
|
||||
export interface PackageConfigModel {
|
||||
|
||||
/**
|
||||
* Package name
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* Package version
|
||||
*/
|
||||
version?: string;
|
||||
|
||||
/**
|
||||
* Package repository
|
||||
*/
|
||||
repository?: string;
|
||||
|
||||
/**
|
||||
* Package download url
|
||||
*/
|
||||
downloadUrl?: string;
|
||||
|
||||
/**
|
||||
* Package file name if package has download url
|
||||
*/
|
||||
fileName?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user