mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-15 03:21:37 -04:00
14 lines
589 B
TypeScript
14 lines
589 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as azdata from 'azdata';
|
|
|
|
export interface QueryHistoryItem {
|
|
readonly queryText: string,
|
|
readonly connectionProfile: azdata.connection.ConnectionProfile | undefined,
|
|
readonly timestamp: Date,
|
|
readonly isSuccess: boolean
|
|
}
|