1export const invitations = [ 2 { 3 id: 1, 4 email: "thibault@openstatus.dev", 5 role: "member", 6 createdAt: "2021-01-01", 7 expiresAt: "2021-01-07", 8 acceptedAt: "2021-01-02", 9 }, 10]; 11 12export type Invitation = (typeof invitations)[number];