@dxos/app-framework - v0.8.3
    Preparing search index...

    Variable ShowUndoConst

    ShowUndo: MakeResult<
        {
            executionMode: "sync";
            meta: {
                description: "Show an undo toast notification.";
                key: "dxos.org/app-framework/undo/operation/show-undo";
                name: "Show Undo";
            };
            schema: {
                input: Struct<
                    {
                        message: optional<
                            Union<
                                [typeof String$, mutable<Tuple2<typeof String$, mutable<(...)>>>],
                            >,
                        >;
                    },
                >;
                output: typeof Void;
            };
            services: readonly [typeof Capability.Service];
        },
    > = ...

    Show an undo toast notification. Fired by HistoryTracker when an undoable operation is tracked.