diff --git a/lib/modules/manager/vendir/types.ts b/lib/modules/manager/vendir/types.ts deleted file mode 100644 index d80b8aedd1b5cb..00000000000000 --- a/lib/modules/manager/vendir/types.ts +++ /dev/null @@ -1,36 +0,0 @@ -import type { HostRule } from '../../../types'; - -export interface Vendir { - kind?: string; - directories: Directories[]; -} - -export interface Directories { - path: string; - contents: Contents[]; -} - -export type Contents = HelmChartContent | OtherContent; - -export interface HelmChartContent { - path: string; - helmChart: HelmChart; -} - -export interface OtherContent { - path: string; -} - -export interface HelmChart { - name: string; - version: string; - repository: Repository; -} - -export interface Repository { - url: string; -} - -export interface RepositoryRule extends Repository { - hostRule: HostRule; -}