23 lines
432 B
TypeScript
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;
|
|
}
|