@@ -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)
|
||||
|
||||
@@ -85,6 +85,11 @@ export type CustomFieldValidator<TFieldReturnValue> = (
|
||||
},
|
||||
) => void | Promise<void>;
|
||||
|
||||
// @alpha
|
||||
export const DefaultTemplateOutputs: (props: {
|
||||
output?: ScaffolderTaskOutput;
|
||||
}) => JSX.Element | null;
|
||||
|
||||
// @alpha (undocumented)
|
||||
export const EmbeddableWorkflow: (props: WorkflowProps) => JSX.Element;
|
||||
|
||||
|
||||
@@ -197,9 +197,17 @@ export type NextRouterProps = {
|
||||
template: TemplateEntityV1beta3;
|
||||
}>;
|
||||
TaskPageComponent?: React_2.ComponentType<{}>;
|
||||
TemplateOutputsComponent?: React_2.ComponentType<{
|
||||
output?: ScaffolderTaskOutput_2;
|
||||
}>;
|
||||
};
|
||||
groups?: TemplateGroupFilter[];
|
||||
FormProps?: FormProps_2;
|
||||
contextMenu?: {
|
||||
editor?: boolean;
|
||||
actions?: boolean;
|
||||
tasks?: boolean;
|
||||
};
|
||||
};
|
||||
|
||||
// @alpha
|
||||
|
||||
Reference in New Issue
Block a user