mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-23 03:54:21 +00:00
9 lines
410 B
TypeScript
9 lines
410 B
TypeScript
|
import * as React from "react";
|
||
|
|
||
|
export type {Argument as ClassNames} from "classnames"
|
||
|
|
||
|
// export type IntrinsicComponentKind = JSX.IntrinsicElements
|
||
|
// export type FunctionComponentKind = (props: object) => JSX.Element
|
||
|
// export type ClassComponentKind = typeof React.Component
|
||
|
// export type ComponentKind = IntrinsicComponentKind | FunctionComponentKind | ClassComponentKind
|
||
|
export type ComponentKind = any
|