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