mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 01:25:36 -05:00
* Edit alert WIP * A couple alert edit bugs * Hook up dashboard refresh notification * Hook onchange event to other agent service calls * Switch update handler to scalar value * Add null check on handler callback
18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
export enum AgentDialogMode {
|
|
CREATE = 1,
|
|
EDIT = 2,
|
|
VIEW = 3
|
|
}
|
|
|
|
export interface IAgentDialogData {
|
|
dialogMode: AgentDialogMode;
|
|
initialize(): void;
|
|
save(): void;
|
|
}
|