type Type = { a: string | number, b: ?string, }; interface Interface { a: string | number; b: ?string; } class Class { a: string | number; b: ?string; } export {Type, Interface, Class};