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

@@ -139,6 +139,6 @@ export interface CardProperties {
export interface ActionDescriptor {
label: string;
actionTitle?: string;
callbackData?: string;
callbackData?: any;
}