@atproto/ozone
Version:
Backend service for moderating the Bluesky network.
14 lines (11 loc) • 307 B
text/typescript
export const accountStrikeTableName = 'account_strike'
export interface AccountStrike {
did: string // Primary key
firstStrikeAt: string | null
lastStrikeAt: string | null
activeStrikeCount: number
totalStrikeCount: number
}
export type PartialDB = {
[accountStrikeTableName]: AccountStrike
}