UNPKG

@oceanbase/design

Version:
5 lines (4 loc) 224 B
/// <reference types="react" /> export type LiteralUnion<T extends string> = T | (string & {}); export type AnyObject = Record<PropertyKey, any>; export type CustomComponent<P = AnyObject> = React.ComponentType<P> | string;