mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-15 00:58:19 -05:00
10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
export interface NewsInterface {
|
|
type: string
|
|
title: string
|
|
expires?: string
|
|
action: {
|
|
label: string
|
|
url: string
|
|
}
|
|
}
|