@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
11 lines (10 loc) • 545 B
TypeScript
/// <reference types="react" />
import { SCCourseType, SCUserType } from '@selfcommunity/types';
import { SCCourseEditManageUserProps, SCCourseEditManageUserRef } from '../../types/course';
interface RequestButtonProps {
course: SCCourseType;
user: SCUserType;
handleOpenDialog: (tab: SCCourseEditManageUserProps) => void;
}
declare const _default: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<RequestButtonProps & import("react").RefAttributes<SCCourseEditManageUserRef>>>;
export default _default;