@umbraco-cms/backoffice
    Preparing search index...

    Interface UmbModalInteractionMemoryControllerArgs

    interface UmbModalInteractionMemoryControllerArgs {
        memory:
            | UmbInteractionMemoryManager
            | (() => UmbInteractionMemoryManager);
        unique: string | (() => string | undefined);
    }
    Index

    The memory manager holding the modal's own memories. Everything it holds is published to the scope above as one entry, and it is the scope for any modal opened from this one. Pass a function when the manager does not exist yet at construction time, e.g. when a base class sets this up for a manager owned by its subclass.

    unique: string | (() => string | undefined)

    The key the modal publishes its memories under. Pass a function when the key is not known at construction time, e.g. when it derives from the modal manifest. Nothing is bridged while it resolves to undefined.