This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/contexts/Channels.tsx

16 lines
253 B
TypeScript
Raw Normal View History

export interface ChannelType {
id: number
name: string
description: string
createdAt: string
updatedAt: string
}
export const channelExample: ChannelType = {
id: 4,
name: 'Channel 4',
description: '',
createdAt: '',
updatedAt: ''
}