aboutsummaryrefslogtreecommitdiff
path: root/packages/server/src/types/index.d.ts
blob: ca0743d29e9ed730b3741884924bc34729fe6d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export type CacheConfig = {
	enabled: boolean,
	ttl?: number,
	max?: number,
	refreshThreshold?: number
}

export type Settings = {
	host: string,
	port: number,
	title: string,
	about: string,
	git_dir: string,
	cache?: CacheConfig,
	dev?: {
		port: number
	}
}