Fix api reporting
Signed-off-by: Jake Crews <jake.crews@daveramsey.com>
This commit is contained in:
@@ -5,13 +5,27 @@
|
||||
```ts
|
||||
/// <reference types="react" />
|
||||
|
||||
import { FunctionComponent } from 'react';
|
||||
// @public (undocumented)
|
||||
export const EntityTeamPullRequestsCard: (
|
||||
props: EntityTeamPullRequestsCardProps,
|
||||
) => JSX.Element | null;
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityTeamPullRequestsCard: FunctionComponent<{}>;
|
||||
export interface EntityTeamPullRequestsCardProps {
|
||||
// (undocumented)
|
||||
defaultLimit?: number;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const EntityTeamPullRequestsContent: FunctionComponent<{}>;
|
||||
export const EntityTeamPullRequestsContent: (
|
||||
props: EntityTeamPullRequestsContentProps,
|
||||
) => JSX.Element | null;
|
||||
|
||||
// @public (undocumented)
|
||||
export interface EntityTeamPullRequestsContentProps {
|
||||
// (undocumented)
|
||||
defaultLimit?: number;
|
||||
}
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
```
|
||||
|
||||
+1
@@ -28,6 +28,7 @@ import { PRCardFormating } from '../../utils/types';
|
||||
import { DraftPrIcon } from '../icons/DraftPr';
|
||||
import { useUserRepositories } from '../../hooks/useUserRepositories';
|
||||
|
||||
/** @public */
|
||||
export interface EntityTeamPullRequestsCardProps {
|
||||
defaultLimit?: number;
|
||||
}
|
||||
|
||||
@@ -14,3 +14,4 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
export { default as EntityTeamPullRequestsCard } from './EntityTeamPullRequestsCard';
|
||||
export type { EntityTeamPullRequestsCardProps } from './EntityTeamPullRequestsCard';
|
||||
|
||||
+1
@@ -26,6 +26,7 @@ import { PRCardFormating } from '../../utils/types';
|
||||
import { DraftPrIcon } from '../icons/DraftPr';
|
||||
import { useUserRepositories } from '../../hooks/useUserRepositories';
|
||||
|
||||
/** @public */
|
||||
export interface EntityTeamPullRequestsContentProps {
|
||||
defaultLimit?: number;
|
||||
}
|
||||
|
||||
+1
@@ -14,3 +14,4 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
export { default as EntityTeamPullRequestsContent } from './EntityTeamPullRequestsContent';
|
||||
export type { EntityTeamPullRequestsContentProps } from './EntityTeamPullRequestsContent';
|
||||
|
||||
@@ -17,3 +17,5 @@ export {
|
||||
EntityTeamPullRequestsCard,
|
||||
EntityTeamPullRequestsContent,
|
||||
} from './plugin';
|
||||
export type { EntityTeamPullRequestsCardProps } from './components/EntityTeamPullRequestsCard';
|
||||
export type { EntityTeamPullRequestsContentProps } from './components/EntityTeamPullRequestsContent';
|
||||
|
||||
Reference in New Issue
Block a user