mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 02:58:31 -05:00
Refresh master with initial release/0.24 snapshot (#332)
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
This commit is contained in:
@@ -34,7 +34,9 @@ import {
|
||||
TaskInfo, ListTasksParams, ListTasksResponse, CancelTaskParams, TaskProgressInfo,
|
||||
DefaultDatabaseInfoParams, DefaultDatabaseInfoResponse, BackupConfigInfoResponse, FileBrowserOpenParams, FileBrowserOpenedParams,
|
||||
FileBrowserCloseParams, FileBrowserExpandParams, FileBrowserValidateParams,
|
||||
FileBrowserCloseResponse, FileBrowserExpandedParams, FileBrowserValidatedParams
|
||||
FileBrowserCloseResponse, FileBrowserExpandedParams, FileBrowserValidatedParams,
|
||||
StartProfilingParams, StartProfilingResponse, StopProfilingParams, StopProfilingResponse,
|
||||
ProfilerEventsAvailableParams
|
||||
} from 'dataprotocol-languageserver-types';
|
||||
|
||||
|
||||
@@ -1583,3 +1585,17 @@ export namespace FileBrowserValidatedNotification {
|
||||
export namespace FileBrowserCloseRequest {
|
||||
export const type: RequestType<FileBrowserCloseParams, FileBrowserCloseResponse, void> = { get method(): string { return 'filebrowser/close'; } };
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------- < Profiler Events > ------------------------------------
|
||||
|
||||
export namespace StartProfilingRequest {
|
||||
export const type: RequestType<StartProfilingParams, StartProfilingResponse, void> = { get method(): string { return 'profiler/start'; } };
|
||||
}
|
||||
|
||||
export namespace StopProfilingRequest {
|
||||
export const type: RequestType<StopProfilingParams, StopProfilingResponse, void> = { get method(): string { return 'profiler/stop'; } };
|
||||
}
|
||||
export namespace ProfilerEventsAvailableNotification {
|
||||
export const type: NotificationType<ProfilerEventsAvailableParams> = { get method(): string { return 'profiler/eventsavailable'; } };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user