@tak-ps/cloudtak 13.87.1 → 13.88.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.
|
@@ -68,6 +68,8 @@ export default class COT {
|
|
|
68
68
|
*/
|
|
69
69
|
update(update: COTUpdate, opts?: {
|
|
70
70
|
skipSave?: boolean;
|
|
71
|
+
/** Called once the in-memory COT is current, before it is persisted */
|
|
72
|
+
onApplied?: (visuallyChanged: boolean) => void;
|
|
71
73
|
}): Promise<boolean>;
|
|
72
74
|
/**
|
|
73
75
|
* Attempt to save the CoT to the database if necessary
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type Subscription from '../../../base/subscription.ts';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/** The Mission Subscription the CoT originates from */
|
|
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<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|