remove unused types

This commit is contained in:
Dan Wilson 2023-08-04 16:31:59 +01:00
parent 248ebeecc4
commit b68e05bdba

View File

@ -12,18 +12,14 @@ export interface CODEProps {
pullRequestSection?: string pullRequestSection?: string
webhookId?: string webhookId?: string
pipeline?: string pipeline?: string
pipelinePath?: string
execution?: string execution?: string
executionPath?: string
} }
export interface CODEQueryProps { export interface CODEQueryProps {
query?: string query?: string
} }
export const pathProps: Readonly< export const pathProps: Readonly<Omit<Required<CODEProps>, 'repoPath' | 'branch' | 'tags'>> = {
Omit<Required<CODEProps>, 'repoPath' | 'branch' | 'tags' | 'pipelinePath' | 'executionPath'>
> = {
space: ':space*', space: ':space*',
repoName: ':repoName', repoName: ':repoName',
gitRef: ':gitRef*', gitRef: ':gitRef*',