mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-10 09:45:43 +00:00
24 lines
568 B
TypeScript
Executable File
24 lines
568 B
TypeScript
Executable File
import Drag from './drag';
|
|
import Mapper from './Mapper';
|
|
import LocalTime from './localTime';
|
|
import ClientTime from './clientTime';
|
|
import LocalStorageSetting from './localStorageSetting';
|
|
import Ping from './ping';
|
|
import CopyToClipboard from './copyToClipboard';
|
|
import DownloadJson from './downloadJson';
|
|
import NewVersionUpdate from './newVersionUpdate';
|
|
import MapAction from './maps/mapAction';
|
|
|
|
export default {
|
|
DownloadJson,
|
|
Drag,
|
|
MapAction,
|
|
Mapper,
|
|
LocalTime,
|
|
ClientTime,
|
|
LocalStorageSetting,
|
|
Ping,
|
|
CopyToClipboard,
|
|
NewVersionUpdate,
|
|
};
|