mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
* indicate to users correct format and kernels * add test for unsupported kernel * replace with enum
27 lines
753 B
TypeScript
27 lines
753 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export namespace nbversion {
|
|
/**
|
|
* The major version of the notebook format.
|
|
*/
|
|
export const MAJOR_VERSION: number = 4;
|
|
|
|
/**
|
|
* The minor version of the notebook format.
|
|
*/
|
|
export const MINOR_VERSION: number = 2;
|
|
}
|
|
|
|
export enum KernelsLanguage {
|
|
SQL = 'sql',
|
|
Python = 'python',
|
|
PySpark = 'python',
|
|
SparkScala = 'scala',
|
|
SparkR = 'sparkr',
|
|
PowerShell = 'powershell',
|
|
CSharp = 'cs'
|
|
}
|