8 lines
103 B
TypeScript
8 lines
103 B
TypeScript
export type ContactInfo = {
|
|
email: string;
|
|
} | {
|
|
matrix: string;
|
|
} | {
|
|
website: string;
|
|
};
|