Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Added timezone property to LocaleInfo interface that will allow applications to access the user's timezone information. ",
"packageName": "@microsoft/teams-js",
"email": "[email protected]_msteamsmdb",
"dependentChangeType": "patch"
}
5 changes: 5 additions & 0 deletions packages/teams-js/src/public/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ export interface LocaleInfo {
* @example 10:10:42 AM
*/
longTime: string;
/**
* A string representing the timezone of the user's locale in IANA format
* @example 'America/Los_Angeles'
*/
timezone?: string;
}

/**
Expand Down
Loading