mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-15 01:55:35 +00:00
30 lines
454 B
TypeScript
30 lines
454 B
TypeScript
/* eslint-disable */
|
|
// @ts-nocheck
|
|
/*
|
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
*/
|
|
export type Config = {
|
|
version?: number
|
|
logDir?: string
|
|
repos?: Repo[]
|
|
plans?: Plan[]
|
|
}
|
|
|
|
export type Repo = {
|
|
id?: string
|
|
uri?: string
|
|
password?: string
|
|
env?: EnvVar[]
|
|
}
|
|
|
|
export type Plan = {
|
|
id?: string
|
|
repo?: string
|
|
repoPath?: string
|
|
paths?: string[]
|
|
}
|
|
|
|
export type EnvVar = {
|
|
name?: string
|
|
value?: string
|
|
} |