September 4, 2024

0.41.0

(feat): Adds generic object declarations to the fern definition. Now we can define generics and use them in alias declarations to minimize code duplication:

1types:
2 GenericTest<T>:
3 properties:
4 value: T
5 other-value: string
6
7 GenericApplication:
8 type: GenericTest<string>

More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics.