added interactive messages (buttons)

This commit is contained in:
ricardo 2020-05-05 13:22:02 -04:00
parent a253192b0c
commit 2d3f02e32c
2 changed files with 1211 additions and 18 deletions

View file

@ -0,0 +1,10 @@
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = undefined;
}
return result;
}

File diff suppressed because it is too large Load diff