Skip to main content

SequenceTree

type SequenceTree = {
hotkey: SequenceHotkey[];
keyBased: Partial<{
[key in string]: SequenceTree;
}>;
codeBased: Partial<{
[code in string]: SequenceTree;
}>;
};

Attributes

hotkey

hotkey: SequenceHotkey[];

keyBased

keyBased: Partial<{
[key in string]: SequenceTree;
}>;

codeBased

codeBased: Partial<{
[code in string]: SequenceTree;
}>;