16 lines
253 B
TypeScript
16 lines
253 B
TypeScript
|
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: ''
|
||
|
}
|