An experimental TypeSpec syntax for Lexicon

bla

+3 -4
+3 -4
DOCS.md
··· 57 57 58 58 For now, we're assuming you write everything in typelex. You can grab common Lexicons from the [Playground](https://playground.typelex.org/). However, if you just want a ref, you could stub out any external Lexicon, like this: 59 59 60 - ``` 61 - /** Some docstring */ 60 + ```typescript 62 61 namespace com.example.defs { 63 62 subject: com.atproto.repo.strongRef.Main; // OK to use here 64 63 } 65 64 66 - // This is a stub 65 + // This is a stub! 67 66 namespace com.atproto.repo.strongRef { 68 - model Main { } 67 + model Main { } // It's fine to leave this empty 69 68 } 70 69 ``` 71 70