dabubble/src/app/interface/channel.interface.ts
2024-09-17 18:15:13 +02:00

23 lines
432 B
TypeScript

export const publicChannels: string[] = [
'ktoVhTjif9OndCsLfEF7',
't0zOHsjKzq0uYSqsMx8j',
'UVeEk7NxpRZjdaNdNWom',
];
export interface Channel {
id?: string;
name: string;
description: string;
creator: string;
privatChannel: boolean;
hashtag: string;
createdDate: string;
addedUser: Array<string>;
index: number;
}
export interface PrvChannel {
id?: string;
creatorId: string;
talkToUserId: string;
}