/** * The document property name used when referencing data in memory for Get/Set/Remove Application Data. */ export declare const ApplicationDataDocumentProperty = "__VSWF_ApplicationData__"; /** * Gets the key for a location in local storage for when referencing data with application or global visibility * for Get/Set/Remove Application Data. * @param dataKey The key for the data item to interact with. * @param appID The key for the app that the item belongs to, or `undefined` if global visibility is to be used. * @returns The key for retrieving the item from Local Storage. */ export declare function getLocalStorageKey(dataKey: string, appID?: string): string; export type DocumentWithApplicationData = Document & { /** * Data stored in memory for Get/Set/Remove Application Data. */ [ApplicationDataDocumentProperty]: Record; };