Fix api reporting

Signed-off-by: Jake Crews <jake.crews@daveramsey.com>
This commit is contained in:
Jake Crews
2022-08-25 15:26:21 -05:00
parent a82ac17adb
commit dc70e0219e
6 changed files with 23 additions and 3 deletions
@@ -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)
```
@@ -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';
@@ -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;
}
@@ -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';