mirror of
https://github.com/nasa/openmct.git
synced 2025-05-07 11:08:34 +00:00
16 lines
442 B
JavaScript
16 lines
442 B
JavaScript
/*global define*/
|
|
|
|
define(
|
|
['./TelemetryProxy', './ImageProxy', './LineProxy', './BoxProxy', './TextProxy'],
|
|
function (TelemetryProxy, ImageProxy, LineProxy, BoxProxy, TextProxy) {
|
|
"use strict";
|
|
|
|
return {
|
|
"fixed.telemetry": TelemetryProxy,
|
|
"fixed.line": LineProxy,
|
|
"fixed.box": BoxProxy,
|
|
"fixed.image": ImageProxy,
|
|
"fixed.text": TextProxy
|
|
};
|
|
}
|
|
); |