@atproto/ozone
Version:
Backend service for moderating the Bluesky network.
14 lines • 352 B
TypeScript
import { ScheduledActionType } from '../api/util';
export type ExecutionSchedule = {
executeAt: Date;
} | {
executeAfter: Date;
executeUntil?: Date;
};
export type SchedulingParams = {
action: ScheduledActionType;
eventData: unknown;
did: string;
createdBy: string;
} & ExecutionSchedule;
//# sourceMappingURL=types.d.ts.map