Minor fix: callback data can be anything, shouldn't restrict to string (#1404)

This commit is contained in:
Kevin Cunnane
2018-05-14 17:20:56 -07:00
committed by GitHub
parent 9bd45cf66a
commit 5bcfb9ab32
2 changed files with 2 additions and 2 deletions

View File

@@ -194,7 +194,7 @@ declare module 'sqlops' {
/** /**
* Data sent on callback being run. * Data sent on callback being run.
*/ */
callbackData?: string; callbackData?: any;
} }
/** /**

View File

@@ -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;
} }