1. 08 12月, 2022 5 次提交
  2. 06 12月, 2022 3 次提交
  3. 05 12月, 2022 5 次提交
  4. 03 12月, 2022 4 次提交
  5. 02 12月, 2022 9 次提交
  6. 01 12月, 2022 4 次提交
  7. 30 11月, 2022 6 次提交
  8. 29 11月, 2022 2 次提交
  9. 27 11月, 2022 1 次提交
  10. 25 11月, 2022 1 次提交
    • R
      Make the server proxy's properties visible to static analysis (#5345) · 85b55475
      Roman Donchenko 提交于
      Currently, all properties of the server proxy object are created using
      `Object.defineProperties` in the constructor, which means that IDEs like
      VS Code can't analyze the file's static structure to determine what
      properties there are and what types they have. Consequently, things like
      autocomplete and go-to-definition don't work.
      
      Fix that by removing the `ServerProxy` class altogether and exporting an
      anonymous object with all properties defined statically.
      85b55475