Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 365 B view raw
1import { type ScyllaRealItemIdentifier } from '../../scylla/index.js'; 2 3export type ScyllaTables = { 4 user_strikes: ScyllaUserStrikesRow; 5}; 6 7type ScyllaUserStrikesRow = { 8 user_identifier: ScyllaRealItemIdentifier; 9 created_at: Date; 10 policy_id: string; 11 user_strike_count: number; 12 org_id: string; 13}; 14 15export type UserStrikesScyllaRelations = ScyllaTables;