Files
pse.dev/lib/types.ts
2023-07-03 23:29:18 -05:00

10 lines
135 B
TypeScript

export interface NewsInterface {
type: string
title: string
expires?: string
action: {
label: string
url: string
}
}