1// `seconds` should be left as 0 for type inherit and retain
2export type RetentionPolicy = {
3  type: 'inherit' | 'expire' | 'explode' | 'retain'
4  seconds: number
5  title: string
6}
7