region property added in platform.d.ts

This commit is contained in:
Neli Chakarova
2015-11-18 15:52:27 +02:00
parent 1e0c82a8d4
commit 68ca2bbd2e

View File

@ -61,9 +61,14 @@ declare module "platform" {
static uuid: string;
/**
* Gets the preferred language. For example "en" or "en_US"
* Gets the preferred language. For example "en"
*/
static language: string;
/**
* Gets the preferred region. For example "US"
*/
static region: string;
}
/**