(ctx context.Context, tabId string, actions ...waveobj.LayoutActionData)
| 105 | } |
| 106 | |
| 107 | func QueueLayoutActionForTab(ctx context.Context, tabId string, actions ...waveobj.LayoutActionData) error { |
| 108 | layoutStateId, err := GetLayoutIdForTab(ctx, tabId) |
| 109 | if err != nil { |
| 110 | return err |
| 111 | } |
| 112 | |
| 113 | return QueueLayoutAction(ctx, layoutStateId, actions...) |
| 114 | } |
| 115 | |
| 116 | func ApplyPortableLayout(ctx context.Context, tabId string, layout PortableLayout, recordTelemetry bool) error { |
| 117 | actions := make([]waveobj.LayoutActionData, len(layout)+1) |
no test coverage detected