mic-inspector
Version:
A react inspector which a most similar of Chorme DevTools inspector
15 lines (14 loc) • 363 B
TypeScript
import { InlineComponentProps, PrimaryTypes } from 'mic-global';
/**
* Property value type
*/
export declare type PropertyValueType = PrimaryTypes;
/**
* Property value props interface
*/
export interface PropertyValueProps extends InlineComponentProps<'value'> {
/**
* Any type data that you want to inspect
*/
value?: PropertyValueType;
}