state shape 651 B

1234567891011121314151617181920212223
  1. {
  2. apiDump -- REFERENCE to api dump
  3. search -- string that is the current search query
  4. selectedClass -- string that is the current class/enum selected
  5. selectedMethod -- string that is current method selected
  6. bookmarks = {
  7. allBookmarks = { -- array of class/method bookmarks in order set
  8. {"Instance",nil}
  9. {"Instance","Name"}
  10. {"HumanoidStateType","Physics"}
  11. {"Humanoid","TakeDamage"}
  12. },
  13. byPair = {
  14. "Instance-nil" = 1
  15. "Instance-Name" = 2
  16. "HumanoidStateType-Physics" = 3
  17. "Humanoid-TakeDamage" = 4
  18. }
  19. }
  20. }