Files
backrest/gen/ts/v1/config.pb.ts
garethgeorge dd9e14e450 Initial commit
2023-11-10 00:59:48 -08:00

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
}