chore: fixing the prettier of the api-reports
Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
@@ -79,7 +79,7 @@ export type BadgeSpec = {
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export type BadgeStyle = typeof BADGE_STYLES[number];
|
||||
export type BadgeStyle = (typeof BADGE_STYLES)[number];
|
||||
|
||||
// @public (undocumented)
|
||||
export const createDefaultBadgeFactories: () => BadgeFactories;
|
||||
|
||||
@@ -132,7 +132,7 @@ export namespace Models {
|
||||
readonly Plaintext: 'plaintext';
|
||||
};
|
||||
export type BaseCommitSummaryMarkupEnum =
|
||||
typeof BaseCommitSummaryMarkupEnum[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
(typeof BaseCommitSummaryMarkupEnum)[keyof typeof BaseCommitSummaryMarkupEnum];
|
||||
export interface Branch {
|
||||
default_merge_strategy?: string;
|
||||
// (undocumented)
|
||||
@@ -150,7 +150,7 @@ export namespace Models {
|
||||
readonly FastForward: 'fast_forward';
|
||||
};
|
||||
export type BranchMergeStrategiesEnum =
|
||||
typeof BranchMergeStrategiesEnum[keyof typeof BranchMergeStrategiesEnum];
|
||||
(typeof BranchMergeStrategiesEnum)[keyof typeof BranchMergeStrategiesEnum];
|
||||
export interface Commit extends BaseCommit {
|
||||
// (undocumented)
|
||||
participants?: Array<Participant>;
|
||||
@@ -179,7 +179,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type CommitFileAttributesEnum =
|
||||
typeof CommitFileAttributesEnum[keyof typeof CommitFileAttributesEnum];
|
||||
(typeof CommitFileAttributesEnum)[keyof typeof CommitFileAttributesEnum];
|
||||
export interface Link {
|
||||
// (undocumented)
|
||||
href?: string;
|
||||
@@ -221,7 +221,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type ParticipantRoleEnum =
|
||||
typeof ParticipantRoleEnum[keyof typeof ParticipantRoleEnum];
|
||||
(typeof ParticipantRoleEnum)[keyof typeof ParticipantRoleEnum];
|
||||
const // (undocumented)
|
||||
ParticipantStateEnum: {
|
||||
readonly Approved: 'approved';
|
||||
@@ -230,7 +230,7 @@ export namespace Models {
|
||||
};
|
||||
// (undocumented)
|
||||
export type ParticipantStateEnum =
|
||||
typeof ParticipantStateEnum[keyof typeof ParticipantStateEnum];
|
||||
(typeof ParticipantStateEnum)[keyof typeof ParticipantStateEnum];
|
||||
export interface Project extends ModelObject {
|
||||
// (undocumented)
|
||||
created_on?: string;
|
||||
@@ -306,7 +306,7 @@ export namespace Models {
|
||||
readonly NoForks: 'no_forks';
|
||||
};
|
||||
export type RepositoryForkPolicyEnum =
|
||||
typeof RepositoryForkPolicyEnum[keyof typeof RepositoryForkPolicyEnum];
|
||||
(typeof RepositoryForkPolicyEnum)[keyof typeof RepositoryForkPolicyEnum];
|
||||
const // (undocumented)
|
||||
RepositoryScmEnum: {
|
||||
readonly Git: 'git';
|
||||
@@ -336,7 +336,7 @@ export namespace Models {
|
||||
}
|
||||
// (undocumented)
|
||||
export type RepositoryScmEnum =
|
||||
typeof RepositoryScmEnum[keyof typeof RepositoryScmEnum];
|
||||
(typeof RepositoryScmEnum)[keyof typeof RepositoryScmEnum];
|
||||
// (undocumented)
|
||||
export interface SearchCodeSearchResult {
|
||||
// (undocumented)
|
||||
|
||||
Reference in New Issue
Block a user