UNPKG

388 BTypeScriptView Raw
1export interface Repos {
2 [repo: string]: {
3 encryptedGithubToken: string;
4 cloudbuild: any & {
5 timeout?: string;
6 };
7 };
8}
9export interface Config {
10 kms: {
11 location: string;
12 keyring: string;
13 key: string;
14 };
15 encryptedWebhookSecret: string;
16 repos: Repos;
17}
18declare const config: Config;
19export default config;