How can i create union schema ? Like this ```typescript type A = B | C ``` If i use concat, i get ```typescript type A = B & C ```