Menuableのitemとして追加可能な型
import { Foo } from "./foo";class OptionItem extends Foo implements FocusableMenuItem { focus() { this.alpha = 1.0 } defocus() { this.alpha = 0.5 } execute() { console.log("hallow!") }}
Optional
Turn on when you want to disable selection of this item
Generated using TypeDoc
Menuableのitemとして追加可能な型
Example