export declare const appJson = "\n\n{\n    \"type\": \"App\",\n    \"body\": [\n      {\n        \"type\": \"Text\",\n        \"text\": \"My name is: ${me.displayName}\",\n        \"name\": \"Name\",\n        \"color\": \"#c719d2\",\n        \"size\": 27\n      },\n      {\n        \"type\": \"Button\",\n        \"text\": \"Load Me!\",\n        \"events\": {\n          \"onPress\": [\n            \"me = @msgraph.get('/v1.0/me') => @log.info($state.me)\"\n          ]\n        }\n      },\n      {\n        \"type\": \"Text\",\n        \"text\": \"SP Web title is: ${web.Title}\",\n        \"name\": \"Name\",\n        \"color\": \"#c719d2\",\n        \"size\": 27\n      },\n      {\n        \"type\": \"Button\",\n        \"text\": \"Load Web!\",\n        \"events\": {\n          \"onPress\": [\n            \"web = @mssp.get('/_api/web') => @log.info($state.web)\"\n          ]\n        }\n      }\n    ],\n    \"state\": {\n      \"test\": \"Nisse\",\n      \"items\": [],\n      \"me\": {},\n      \"web\": {},\n      \"showDialog\": false\n    }\n}\n       \n\n";
