@tak-ps/cloudtak 12.94.0 → 12.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/dist/types/plugin.d.ts +156 -0
  2. package/dist/types/src/base/chatroom-chats.d.ts +19 -0
  3. package/dist/types/src/base/chatroom.d.ts +49 -0
  4. package/dist/types/src/base/config.d.ts +17 -0
  5. package/dist/types/src/base/contact.d.ts +14 -0
  6. package/dist/types/src/base/cot.d.ts +95 -0
  7. package/dist/types/src/base/database.d.ts +192 -0
  8. package/dist/types/src/base/events.d.ts +32 -0
  9. package/dist/types/src/base/filter.d.ts +41 -0
  10. package/dist/types/src/base/group.d.ts +27 -0
  11. package/dist/types/src/base/handler.d.ts +9 -0
  12. package/dist/types/src/base/icon.d.ts +4 -0
  13. package/dist/types/src/base/mission-template-logs.d.ts +9 -0
  14. package/dist/types/src/base/mission-template.d.ts +20 -0
  15. package/dist/types/src/base/notification.d.ts +37 -0
  16. package/dist/types/src/base/overlay.d.ts +94 -0
  17. package/dist/types/src/base/profile.d.ts +20 -0
  18. package/dist/types/src/base/server.d.ts +9 -0
  19. package/dist/types/src/base/subscription-changes.d.ts +18 -0
  20. package/dist/types/src/base/subscription-chat.d.ts +23 -0
  21. package/dist/types/src/base/subscription-contents.d.ts +27 -0
  22. package/dist/types/src/base/subscription-feature.d.ts +49 -0
  23. package/dist/types/src/base/subscription-log.d.ts +34 -0
  24. package/dist/types/src/base/subscription.d.ts +128 -0
  25. package/dist/types/src/base/utils/styles.d.ts +11 -0
  26. package/dist/types/src/base/validators.d.ts +9 -0
  27. package/dist/types/src/components/CloudTAK/ActiveMission.vue.d.ts +3 -0
  28. package/dist/types/src/components/CloudTAK/CoTView.vue.d.ts +3 -0
  29. package/dist/types/src/components/CloudTAK/DrawTools.vue.d.ts +3 -0
  30. package/dist/types/src/components/CloudTAK/GenericBottomPane.vue.d.ts +13 -0
  31. package/dist/types/src/components/CloudTAK/Inputs/BufferInput.vue.d.ts +10 -0
  32. package/dist/types/src/components/CloudTAK/Inputs/CoordInput.vue.d.ts +7 -0
  33. package/dist/types/src/components/CloudTAK/Inputs/GeoJSONInput.vue.d.ts +24 -0
  34. package/dist/types/src/components/CloudTAK/Inputs/RangeInput.vue.d.ts +7 -0
  35. package/dist/types/src/components/CloudTAK/Inputs/RangeRingsInput.vue.d.ts +7 -0
  36. package/dist/types/src/components/CloudTAK/MainMenu.vue.d.ts +9 -0
  37. package/dist/types/src/components/CloudTAK/MainMenuContents.vue.d.ts +16 -0
  38. package/dist/types/src/components/CloudTAK/Map.vue.d.ts +8 -0
  39. package/dist/types/src/components/CloudTAK/MapLoading.vue.d.ts +3 -0
  40. package/dist/types/src/components/CloudTAK/Menu/Basemaps/EditModal.vue.d.ts +13 -0
  41. package/dist/types/src/components/CloudTAK/Menu/Debugger.vue.d.ts +3 -0
  42. package/dist/types/src/components/CloudTAK/Menu/Iconset/EditModal.vue.d.ts +7 -0
  43. package/dist/types/src/components/CloudTAK/Menu/MenuBasemaps.vue.d.ts +3 -0
  44. package/dist/types/src/components/CloudTAK/Menu/MenuChannels.vue.d.ts +3 -0
  45. package/dist/types/src/components/CloudTAK/Menu/MenuChat.vue.d.ts +3 -0
  46. package/dist/types/src/components/CloudTAK/Menu/MenuChats.vue.d.ts +3 -0
  47. package/dist/types/src/components/CloudTAK/Menu/MenuConnections.vue.d.ts +3 -0
  48. package/dist/types/src/components/CloudTAK/Menu/MenuContacts.vue.d.ts +3 -0
  49. package/dist/types/src/components/CloudTAK/Menu/MenuFeatView.vue.d.ts +8 -0
  50. package/dist/types/src/components/CloudTAK/Menu/MenuFeatures.vue.d.ts +3 -0
  51. package/dist/types/src/components/CloudTAK/Menu/MenuFeaturesDeleted.vue.d.ts +3 -0
  52. package/dist/types/src/components/CloudTAK/Menu/MenuFiles.vue.d.ts +3 -0
  53. package/dist/types/src/components/CloudTAK/Menu/MenuHistory.vue.d.ts +3 -0
  54. package/dist/types/src/components/CloudTAK/Menu/MenuIcon.vue.d.ts +3 -0
  55. package/dist/types/src/components/CloudTAK/Menu/MenuIconset.vue.d.ts +3 -0
  56. package/dist/types/src/components/CloudTAK/Menu/MenuIconsets.vue.d.ts +3 -0
  57. package/dist/types/src/components/CloudTAK/Menu/MenuImport.vue.d.ts +3 -0
  58. package/dist/types/src/components/CloudTAK/Menu/MenuImports.vue.d.ts +3 -0
  59. package/dist/types/src/components/CloudTAK/Menu/MenuItemCard.vue.d.ts +103 -0
  60. package/dist/types/src/components/CloudTAK/Menu/MenuMission.vue.d.ts +3 -0
  61. package/dist/types/src/components/CloudTAK/Menu/MenuMissions.vue.d.ts +3 -0
  62. package/dist/types/src/components/CloudTAK/Menu/MenuOverlayExplorer.vue.d.ts +3 -0
  63. package/dist/types/src/components/CloudTAK/Menu/MenuOverlays.vue.d.ts +3 -0
  64. package/dist/types/src/components/CloudTAK/Menu/MenuPackage.vue.d.ts +3 -0
  65. package/dist/types/src/components/CloudTAK/Menu/MenuPackages.vue.d.ts +3 -0
  66. package/dist/types/src/components/CloudTAK/Menu/MenuRoutes.vue.d.ts +3 -0
  67. package/dist/types/src/components/CloudTAK/Menu/MenuRoutesNew.vue.d.ts +3 -0
  68. package/dist/types/src/components/CloudTAK/Menu/MenuSettings.vue.d.ts +3 -0
  69. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsCallsign.vue.d.ts +3 -0
  70. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsDisplay.vue.d.ts +3 -0
  71. package/dist/types/src/components/CloudTAK/Menu/MenuSettingsTokens.vue.d.ts +3 -0
  72. package/dist/types/src/components/CloudTAK/Menu/MenuVideos.vue.d.ts +3 -0
  73. package/dist/types/src/components/CloudTAK/Menu/MenuVideosRemote.vue.d.ts +3 -0
  74. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionChanges.vue.d.ts +7 -0
  75. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionChats.vue.d.ts +7 -0
  76. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionContents.vue.d.ts +7 -0
  77. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionCreate.vue.d.ts +7 -0
  78. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionInfo.vue.d.ts +11 -0
  79. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerCreate.vue.d.ts +13 -0
  80. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerEdit.vue.d.ts +15 -0
  81. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayerTree.vue.d.ts +15 -0
  82. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLayers.vue.d.ts +10 -0
  83. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLog.vue.d.ts +9 -0
  84. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionLogs.vue.d.ts +7 -0
  85. package/dist/types/src/components/CloudTAK/Menu/Mission/MissionUsers.vue.d.ts +7 -0
  86. package/dist/types/src/components/CloudTAK/Menu/Mission/PendingInvites.vue.d.ts +11 -0
  87. package/dist/types/src/components/CloudTAK/Menu/Overlays/DeleteModal.vue.d.ts +39 -0
  88. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeCots.vue.d.ts +7 -0
  89. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeMission.vue.d.ts +7 -0
  90. package/dist/types/src/components/CloudTAK/Menu/Overlays/TreeVector.vue.d.ts +13 -0
  91. package/dist/types/src/components/CloudTAK/Menu/Settings/TokenModal.vue.d.ts +13 -0
  92. package/dist/types/src/components/CloudTAK/Menu/Videos/VideoLeaseModal.vue.d.ts +16 -0
  93. package/dist/types/src/components/CloudTAK/Menu/Videos/VideosRemoteFeed.vue.d.ts +13 -0
  94. package/dist/types/src/components/CloudTAK/Notifications.vue.d.ts +3 -0
  95. package/dist/types/src/components/CloudTAK/Query/Magnetic.vue.d.ts +7 -0
  96. package/dist/types/src/components/CloudTAK/Query/Reverse.vue.d.ts +8 -0
  97. package/dist/types/src/components/CloudTAK/Query/Sun.vue.d.ts +7 -0
  98. package/dist/types/src/components/CloudTAK/Query/Weather.vue.d.ts +7 -0
  99. package/dist/types/src/components/CloudTAK/QueryView.vue.d.ts +3 -0
  100. package/dist/types/src/components/CloudTAK/RadialMenu/RadialMenu.vue.d.ts +22 -0
  101. package/dist/types/src/components/CloudTAK/util/Breadcrumb.vue.d.ts +10 -0
  102. package/dist/types/src/components/CloudTAK/util/ChannelInfo.vue.d.ts +15 -0
  103. package/dist/types/src/components/CloudTAK/util/Contact.vue.d.ts +38 -0
  104. package/dist/types/src/components/CloudTAK/util/ContactPuck.vue.d.ts +7 -0
  105. package/dist/types/src/components/CloudTAK/util/Coordinate.vue.d.ts +67 -0
  106. package/dist/types/src/components/CloudTAK/util/CoordinateType.vue.d.ts +27 -0
  107. package/dist/types/src/components/CloudTAK/util/CopyButton.vue.d.ts +32 -0
  108. package/dist/types/src/components/CloudTAK/util/CopyField.vue.d.ts +122 -0
  109. package/dist/types/src/components/CloudTAK/util/DrawOverlay.vue.d.ts +3 -0
  110. package/dist/types/src/components/CloudTAK/util/EmptyInfo.vue.d.ts +24 -0
  111. package/dist/types/src/components/CloudTAK/util/FeatureIcon.vue.d.ts +23 -0
  112. package/dist/types/src/components/CloudTAK/util/FeatureRow.vue.d.ts +81 -0
  113. package/dist/types/src/components/CloudTAK/util/FloatingAttachment.vue.d.ts +17 -0
  114. package/dist/types/src/components/CloudTAK/util/FloatingGeneric.vue.d.ts +17 -0
  115. package/dist/types/src/components/CloudTAK/util/FloatingPane.vue.d.ts +31 -0
  116. package/dist/types/src/components/CloudTAK/util/FloatingVideo.vue.d.ts +27 -0
  117. package/dist/types/src/components/CloudTAK/util/GenericChat.vue.d.ts +34 -0
  118. package/dist/types/src/components/CloudTAK/util/GenericSelect.vue.d.ts +34 -0
  119. package/dist/types/src/components/CloudTAK/util/GroupSelect.vue.d.ts +14 -0
  120. package/dist/types/src/components/CloudTAK/util/Icons.vue.d.ts +24 -0
  121. package/dist/types/src/components/CloudTAK/util/JSONModal.vue.d.ts +27 -0
  122. package/dist/types/src/components/CloudTAK/util/Keywords.vue.d.ts +10 -0
  123. package/dist/types/src/components/CloudTAK/util/LineLength.vue.d.ts +24 -0
  124. package/dist/types/src/components/CloudTAK/util/MenuTemplate.vue.d.ts +89 -0
  125. package/dist/types/src/components/CloudTAK/util/MultipleSelect.vue.d.ts +7 -0
  126. package/dist/types/src/components/CloudTAK/util/NotificationIcon.vue.d.ts +10 -0
  127. package/dist/types/src/components/CloudTAK/util/NotificationToast.vue.d.ts +13 -0
  128. package/dist/types/src/components/CloudTAK/util/PolygonArea.vue.d.ts +24 -0
  129. package/dist/types/src/components/CloudTAK/util/PropertyAttachments.vue.d.ts +14 -0
  130. package/dist/types/src/components/CloudTAK/util/PropertyBattery.vue.d.ts +13 -0
  131. package/dist/types/src/components/CloudTAK/util/PropertyBearing.vue.d.ts +58 -0
  132. package/dist/types/src/components/CloudTAK/util/PropertyCreator.vue.d.ts +7 -0
  133. package/dist/types/src/components/CloudTAK/util/PropertyDistance.vue.d.ts +54 -0
  134. package/dist/types/src/components/CloudTAK/util/PropertyElevation.vue.d.ts +32 -0
  135. package/dist/types/src/components/CloudTAK/util/PropertyEmail.vue.d.ts +13 -0
  136. package/dist/types/src/components/CloudTAK/util/PropertyGeofence.vue.d.ts +10 -0
  137. package/dist/types/src/components/CloudTAK/util/PropertyLinks.vue.d.ts +14 -0
  138. package/dist/types/src/components/CloudTAK/util/PropertyMetadata.vue.d.ts +7 -0
  139. package/dist/types/src/components/CloudTAK/util/PropertyMilSym.vue.d.ts +25 -0
  140. package/dist/types/src/components/CloudTAK/util/PropertyPhone.vue.d.ts +13 -0
  141. package/dist/types/src/components/CloudTAK/util/PropertySensor.vue.d.ts +18 -0
  142. package/dist/types/src/components/CloudTAK/util/PropertySpeed.vue.d.ts +23 -0
  143. package/dist/types/src/components/CloudTAK/util/PropertyStyle.vue.d.ts +7 -0
  144. package/dist/types/src/components/CloudTAK/util/PropertyTimes.vue.d.ts +7 -0
  145. package/dist/types/src/components/CloudTAK/util/PropertyType.vue.d.ts +27 -0
  146. package/dist/types/src/components/CloudTAK/util/SearchBox.vue.d.ts +46 -0
  147. package/dist/types/src/components/CloudTAK/util/SelectFeats.vue.d.ts +7 -0
  148. package/dist/types/src/components/CloudTAK/util/SettingsCallsign.vue.d.ts +28 -0
  149. package/dist/types/src/components/CloudTAK/util/Share.vue.d.ts +14 -0
  150. package/dist/types/src/components/CloudTAK/util/ShareToMission.vue.d.ts +53 -0
  151. package/dist/types/src/components/CloudTAK/util/ShareToPackage.vue.d.ts +62 -0
  152. package/dist/types/src/components/CloudTAK/util/SlideDownHeader.vue.d.ts +41 -0
  153. package/dist/types/src/components/CloudTAK/util/StandardItem.vue.d.ts +18 -0
  154. package/dist/types/src/components/CloudTAK/util/Subscriptions.vue.d.ts +7 -0
  155. package/dist/types/src/components/CloudTAK/util/TagEntry.vue.d.ts +51 -0
  156. package/dist/types/src/components/CloudTAK/util/UserClientSelect.vue.d.ts +16 -0
  157. package/dist/types/src/components/CloudTAK/util/VideoLeaseSourceType.vue.d.ts +6 -0
  158. package/dist/types/src/components/CloudTAK/util/WarnChannels.vue.d.ts +7 -0
  159. package/dist/types/src/components/CloudTAK/util/WarnConfiguration.vue.d.ts +7 -0
  160. package/dist/types/src/components/Configure.vue.d.ts +3 -0
  161. package/dist/types/src/components/ETL/Connection/AgencyBadge.vue.d.ts +8 -0
  162. package/dist/types/src/components/ETL/Connection/CertificateP12.vue.d.ts +13 -0
  163. package/dist/types/src/components/ETL/Connection/StatusDot.vue.d.ts +13 -0
  164. package/dist/types/src/components/ETL/Styling/Layer.vue.d.ts +24 -0
  165. package/dist/types/src/components/Login.vue.d.ts +7 -0
  166. package/dist/types/src/components/util/GroupSelect.vue.d.ts +14 -0
  167. package/dist/types/src/components/util/IconSelect.vue.d.ts +29 -0
  168. package/dist/types/src/components/util/StatusDot.vue.d.ts +8 -0
  169. package/dist/types/src/components/util/Upload.vue.d.ts +46 -0
  170. package/dist/types/src/components/util/UploadLogo.vue.d.ts +14 -0
  171. package/dist/types/src/router.d.ts +3 -0
  172. package/dist/types/src/std.d.ts +19 -0
  173. package/dist/types/src/stores/float.d.ts +42 -0
  174. package/dist/types/src/stores/map.d.ts +124 -0
  175. package/dist/types/src/stores/modules/draw.d.ts +61 -0
  176. package/dist/types/src/stores/modules/icons.d.ts +38 -0
  177. package/dist/types/src/stores/modules/menu.d.ts +39 -0
  178. package/dist/types/src/timediff.d.ts +1 -0
  179. package/dist/types/src/types.d.ts +169 -0
  180. package/dist/types/src/workers/atlas-breadcrumb.d.ts +65 -0
  181. package/dist/types/src/workers/atlas-connection.d.ts +14 -0
  182. package/dist/types/src/workers/atlas-database.d.ts +137 -0
  183. package/dist/types/src/workers/atlas-profile.d.ts +44 -0
  184. package/dist/types/src/workers/atlas.d.ts +17 -0
  185. package/package.json +13 -7
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import type { MapGeoJSONFeature } from 'maplibre-gl';
2
+ import type { Feature } from 'geojson';
3
+ type __VLS_Props = {
4
+ feat?: Feature | MapGeoJSONFeature;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,103 @@
1
+ import type { Component, PropType } from 'vue';
2
+ type LayoutVariant = 'list' | 'tiles';
3
+ declare var __VLS_11: {}, __VLS_18: {};
4
+ type __VLS_Slots = {} & {
5
+ prefix?: (props: typeof __VLS_11) => any;
6
+ } & {
7
+ default?: (props: typeof __VLS_18) => any;
8
+ };
9
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
10
+ icon: {
11
+ type: PropType<Component>;
12
+ required: true;
13
+ };
14
+ iconColor: {
15
+ type: StringConstructor;
16
+ default: undefined;
17
+ };
18
+ label: {
19
+ type: StringConstructor;
20
+ required: true;
21
+ };
22
+ description: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ descriptionClass: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ tooltip: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ badge: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ layout: {
39
+ type: PropType<LayoutVariant>;
40
+ default: string;
41
+ };
42
+ compact: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
47
+ select: (...args: any[]) => void;
48
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
49
+ icon: {
50
+ type: PropType<Component>;
51
+ required: true;
52
+ };
53
+ iconColor: {
54
+ type: StringConstructor;
55
+ default: undefined;
56
+ };
57
+ label: {
58
+ type: StringConstructor;
59
+ required: true;
60
+ };
61
+ description: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ descriptionClass: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ };
69
+ tooltip: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ badge: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ layout: {
78
+ type: PropType<LayoutVariant>;
79
+ default: string;
80
+ };
81
+ compact: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ }>> & Readonly<{
86
+ onSelect?: ((...args: any[]) => any) | undefined;
87
+ }>, {
88
+ description: string;
89
+ tooltip: string;
90
+ compact: boolean;
91
+ layout: LayoutVariant;
92
+ badge: string;
93
+ iconColor: string;
94
+ descriptionClass: string;
95
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
96
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
97
+ declare const _default: typeof __VLS_export;
98
+ export default _default;
99
+ type __VLS_WithSlots<T, S> = T & {
100
+ new (): {
101
+ $slots: S;
102
+ };
103
+ };
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
+ mission: (...args: any[]) => void;
3
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
4
+ onMission?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ refresh: (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onRefresh?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ layer: (...args: any[]) => void;
7
+ cancel: (...args: any[]) => void;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ onLayer?: ((...args: any[]) => any) | undefined;
10
+ onCancel?: ((...args: any[]) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,15 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ import type { MissionLayer } from '../../../../types.ts';
3
+ type __VLS_Props = {
4
+ subscription: Subscription;
5
+ layer: MissionLayer;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ layer: (...args: any[]) => void;
9
+ cancel: (...args: any[]) => void;
10
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ onLayer?: ((...args: any[]) => any) | undefined;
12
+ onCancel?: ((...args: any[]) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,15 @@
1
+ import type { MissionLayer, Feature } from '../../../../types.ts';
2
+ import Subscription from '../../../../base/subscription.ts';
3
+ type __VLS_Props = {
4
+ layers: Array<MissionLayer>;
5
+ feats: Map<string, Feature>;
6
+ subscription: Subscription;
7
+ orphaned?: Set<string>;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ refresh: (...args: any[]) => void;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onRefresh?: ((...args: any[]) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ menu?: boolean;
4
+ subscription: Subscription;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ menu: boolean;
8
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import type { DBSubscriptionLog } from '../../../../base/database.ts';
2
+ import Subscription from '../../../../base/subscription.ts';
3
+ type __VLS_Props = {
4
+ log: DBSubscriptionLog;
5
+ subscription: Subscription;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ declare const _default: typeof __VLS_export;
9
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Subscription from '../../../../base/subscription.ts';
2
+ type __VLS_Props = {
3
+ subscription: Subscription;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import type { MissionInvite } from '../../../../types.ts';
2
+ type __VLS_Props = {
3
+ invites: MissionInvite[];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ "update:invites": (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ "onUpdate:invites"?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -0,0 +1,39 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ size: {
7
+ type: NumberConstructor;
8
+ default: number;
9
+ };
10
+ displaytype: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ close: (...args: any[]) => void;
16
+ delete: (...args: any[]) => void;
17
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
18
+ label: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ size: {
23
+ type: NumberConstructor;
24
+ default: number;
25
+ };
26
+ displaytype: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ }>> & Readonly<{
31
+ onClose?: ((...args: any[]) => any) | undefined;
32
+ onDelete?: ((...args: any[]) => any) | undefined;
33
+ }>, {
34
+ label: string;
35
+ size: number;
36
+ displaytype: string;
37
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
+ declare const _default: typeof __VLS_export;
39
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type Overlay from '../../../../base/overlay.ts';
2
+ type __VLS_Props = {
3
+ element: Overlay;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import Overlay from '../../../../base/overlay.ts';
2
+ type __VLS_Props = {
3
+ overlay: Overlay;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ overlay: {
3
+ type: ObjectConstructor;
4
+ required: true;
5
+ };
6
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ overlay: {
8
+ type: ObjectConstructor;
9
+ required: true;
10
+ };
11
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import type { ProfileToken } from '../../../../types.ts';
2
+ type __VLS_Props = {
3
+ token: ProfileToken | Record<string, never>;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ close: (...args: any[]) => void;
7
+ refresh: (...args: any[]) => void;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ onClose?: ((...args: any[]) => any) | undefined;
10
+ onRefresh?: ((...args: any[]) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import type { VideoLease } from '../../../../types.ts';
2
+ type __VLS_Props = {
3
+ lease: VideoLease;
4
+ isSystemAdmin?: boolean;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ close: (...args: any[]) => void;
8
+ refresh: (...args: any[]) => void;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ onClose?: ((...args: any[]) => any) | undefined;
11
+ onRefresh?: ((...args: any[]) => any) | undefined;
12
+ }>, {
13
+ isSystemAdmin: boolean;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
@@ -0,0 +1,13 @@
1
+ import type { VideoConnectionFeed } from '../../../../types.ts';
2
+ type __VLS_Props = {
3
+ modelValue: VideoConnectionFeed;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ "update:modelValue": (...args: any[]) => void;
7
+ delete: (...args: any[]) => void;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
10
+ onDelete?: ((...args: any[]) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { SearchReverse } from '../../../types.ts';
2
+ type __VLS_Props = {
3
+ magnetic: SearchReverse["magnetic"];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import type { SearchReverse } from '../../../types.ts';
2
+ type __VLS_Props = {
3
+ reverse: SearchReverse["reverse"];
4
+ elevation?: SearchReverse["elevation"];
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { SearchReverse } from '../../../types.ts';
2
+ type __VLS_Props = {
3
+ sun: SearchReverse["sun"];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import type { SearchReverse } from '../../../types.ts';
2
+ type __VLS_Props = {
3
+ weather: SearchReverse["weather"];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;