mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Minor fix: callback data can be anything, shouldn't restrict to string (#1404)
This commit is contained in:
2
src/sql/sqlops.proposed.d.ts
vendored
2
src/sql/sqlops.proposed.d.ts
vendored
@@ -194,7 +194,7 @@ declare module 'sqlops' {
|
|||||||
/**
|
/**
|
||||||
* Data sent on callback being run.
|
* Data sent on callback being run.
|
||||||
*/
|
*/
|
||||||
callbackData?: string;
|
callbackData?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -139,6 +139,6 @@ export interface CardProperties {
|
|||||||
export interface ActionDescriptor {
|
export interface ActionDescriptor {
|
||||||
label: string;
|
label: string;
|
||||||
actionTitle?: string;
|
actionTitle?: string;
|
||||||
callbackData?: string;
|
callbackData?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user