@aliretail/react-materials-components
Version:
13 lines (12 loc) • 390 B
TypeScript
/// <reference types="react" />
export declare const ChildContainer: ({ children, ...props }: {
[x: string]: any;
children: any;
}) => JSX.Element;
interface EffectChildDisplayProps {
parent: string;
child: string;
condition: (value: any) => boolean;
}
export declare const effectChildDisplay: ({ parent, child, condition }: EffectChildDisplayProps) => void;
export {};