Source code for jdxi_editor.ui.editors.base.lfo.behavior

from typing import Protocol, runtime_checkable


@runtime_checkable
[docs] class LFOBehavior(Protocol):
[docs] def build_widgets(self) -> None: ...
[docs] def setup_ui(self) -> None: ...