Skip to content

Commit

Permalink
Merge pull request #4163 from WiXSL/patch-interface-name
Browse files Browse the repository at this point in the history
Change interface name from childrenParams to ChildrenParams.
  • Loading branch information
ThieryMichel authored Jan 3, 2020
2 parents 7128f47 + f72cad4 commit cf94cc4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import { Record } from '../../types';
import getResourceLinkPath, { LinkToFunctionType } from './getResourceLinkPath';
import useReference, { UseReferenceProps } from '../useReference';

interface childrenParams extends UseReferenceProps {
interface ChildrenParams extends UseReferenceProps {
resourceLinkPath: string | false;
}

interface Props {
basePath: string;
children: (params: childrenParams) => ReactNode;
children: (params: ChildrenParams) => ReactNode;
record?: Record;
reference: string;
resource: string;
Expand Down

0 comments on commit cf94cc4

Please sign in to comment.