add name, creator_id

This commit is contained in:
Michael Fatemi 2021-04-10 21:00:54 -04:00
parent 28274b3fc7
commit 8ea818a39a

2
src/types.d.ts vendored
View File

@ -1,7 +1,9 @@
declare namespace Carpool { declare namespace Carpool {
export interface Group { export interface Group {
id: string; id: string;
name: string;
member_ids: string[]; member_ids: string[];
creator_id: string;
} }
// Omits the email attribute // Omits the email attribute