-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: introduced ts types, added test data
- Loading branch information
1 parent
7011942
commit 0bfe834
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* Example of union type definition | ||
*/ | ||
type SomeCombinedType = string | number | 'Specific string' | SomeOtherType; | ||
|
||
|
||
/** | ||
* Example of simple type definition | ||
*/ | ||
type SomeOtherType = boolean; | ||
|
||
/** | ||
* Example of generic type definition with T as parameter | ||
*/ | ||
type SomeGenericType<T> = T | SomeOtherGenericType<T> | { property: T, other: string } | ||
|
||
/** | ||
* Example of generic type definition with T as parameter | ||
*/ | ||
type SomeOtherGenericType<T> = { children: T[] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters