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.
*/
callbackData?: string;
callbackData?: any;
}
/**