Joseph Kohlmann

Results 3 comments of Joseph Kohlmann

Minimum and maximum constraints (in particular for widths) would be excellent. There are several use cases I can imagine for responsive web layouts, for example: A horizontally centered column of...

I have a generated string union type definition like this: ```ts export type Align = | 'LEFT' | 'CENTER' | 'RIGHT' | 'DEFAULT'; ``` I also have an existing object...

I came across this limitation when trying to create a type definition for an object like this: ```ts import { PropertiesFallback } from 'csstype'; interface CSSPropertiesAndMediaQueryDelimitedCSSProperties extends PropertiesFallback { [K:...