Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:45, 6 November 2024 Iwiseman talk contribs created page Extras for Typescript (Created page with "=Option Fields for Types= This was a humorous approach to this where the type was <syntaxhighlight lang="ts"> type Props { name: string gender: "male | female" salary?: number weight?: number } </syntaxhighlight> You only want weight for male and salary for female so we can use intersections <syntaxhighlight lang="ts"> type Props { name: string } & (MaleProps | FemaleProps) type MaleProps { gender: "male" weight: number } type FemaleProps { gen...")