mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 09:35:39 -05:00
enable provider/extension side copy to clipboard support (#23363)
* improve copy data experience * add copy result handler * refactoring * updates * add thirdparty notice for TextCopy nuget package * add await * comments
This commit is contained in:
@@ -108,6 +108,13 @@ export interface ConnectionProviderProperties {
|
||||
* Connection string options for the connection provider
|
||||
*/
|
||||
connectionStringOptions?: ConnectionStringOptions;
|
||||
|
||||
/**
|
||||
* Indicates whether the provider support copy results to clipboard. Default value is false.
|
||||
* If true, the copy results to clipboard will be delegated to the provider to avoid passing large amount of data using the RPC channel.
|
||||
* Otherwise ADS will handle the copy request on the UI side.
|
||||
*/
|
||||
supportCopyResultsToClipboard?: boolean;
|
||||
}
|
||||
|
||||
export interface ProviderFeatures {
|
||||
|
||||
Reference in New Issue
Block a user