mudlet-map-editor 0.14.0 → 0.15.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.
@@ -1,4 +1,5 @@
1
1
  import type { MudletMap } from '../mapIO';
2
+ export declare const ACKS_USERDATA_KEY = "mme_acks";
2
3
  /**
3
4
  * Fingerprint based on sorted area IDs. Stable across filename changes;
4
5
  * invalidates when areas are added or removed.
@@ -6,3 +7,5 @@ import type { MudletMap } from '../mapIO';
6
7
  export declare function mapAckKey(map: MudletMap): string;
7
8
  export declare function loadAcks(mapKey: string): Set<string>;
8
9
  export declare function saveAcks(mapKey: string, acks: Set<string>): void;
10
+ export declare function loadAckInUserdata(mapKey: string): boolean;
11
+ export declare function saveAckInUserdata(mapKey: string, value: boolean): void;
@@ -1,6 +1,7 @@
1
1
  import './styles.css';
2
2
  export { default as App } from './App';
3
3
  export type { EditorPlugin, SidebarTab, RoomPanelSection, RoomSectionProps, PluginCheckResult } from './editor/plugin';
4
+ export type { MudletMap, MudletRoom, MudletColor } from './mapIO';
4
5
  export type { SwatchSet, Swatch } from './editor/types';
5
6
  export { loadUrlIntoStore } from './editor/loadFile';
6
7
  export { getMapBytes } from './editor/mapBytes';