@tarojs/components
Version:
13 lines (12 loc) • 482 B
TypeScript
/// <reference types="react" />
/// <reference types="react" />
interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
forwardedRef: React.RefObject<ElementType>;
ref?: React.Ref<any>;
}
export declare const manipulatePropsFunction: <ElementType>(originalProps: StencilReactInternalProps<ElementType>, propsToPass?: Record<string, unknown>) => {
dangerouslySetInnerHTML: {
__html: string | TrustedHTML;
};
};
export {};