summaryrefslogtreecommitdiff
path: root/src/types/CommitteeMember.d.ts
blob: 8aedaf87b686580cad60b2d5e9ac76de860a18b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type CommitteeRole from '$enums/CommitteeRole';
import type Locale from './Locale';

type CommitteeMember = {
  name: string;
  roles: CommitteeRole[];
  bio?: { [key in Locale]: string };
  img?: {
    width106: ImageMetadata;
    width146: ImageMetadata;
    width192: ImageMetadata;
    width222: ImageMetadata;
  };
};