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; index: number; } export interface PrvChannel { id?: string; creatorId: string; talkToUserId: string; }