mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
a1d765f271
Per code review, nasa/openmctweb#204
27 lines
704 B
JSON
27 lines
704 B
JSON
{
|
|
"name": "Time services bundle",
|
|
"description": "Defines interfaces and provides default implementations for handling different time systems.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "formatService",
|
|
"type": "provider",
|
|
"implementation": "FormatProvider.js",
|
|
"depends": [ "formats[]" ]
|
|
}
|
|
],
|
|
"formats": [
|
|
{
|
|
"key": "utc",
|
|
"implementation": "UTCTimeFormat.js"
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "DEFAULT_TIME_FORMAT",
|
|
"value": "utc"
|
|
}
|
|
]
|
|
}
|
|
}
|