10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
type SnipeCache = {
|
|
author: string
|
|
content: string
|
|
channel: string
|
|
createdAt: number
|
|
deletedAt: number
|
|
attachments: string[]
|
|
}
|
|
|
|
export default SnipeCache |