Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PropsOf

Allows to extract the supported properties of a style function.

Here is an example for react

import { HTMLAttributes } from "react";
import { style, PropsOf } from "@twind/core";
const button = style({ ... })
type ButtonProps = PropsOf<typeof button>
export const Button = (props: ButtonProps & HTMLAttributes<HTMLButtonElement>) => {
  return <button className={style(props)} {...rest} />
}
type PropsOf<T> = T extends Style<infer Variants> ? [key in keyof Variants]: MorphVariant<keyof Variants[key]> : never;

§Type Parameters

§Type

§
T extends Style<infer Variants> ? [key in keyof Variants]: MorphVariant<keyof Variants[key]> : never
[src]