9 lines
133 B
TypeScript
9 lines
133 B
TypeScript
interface ChannelRows {
|
|
subject: string;
|
|
}
|
|
|
|
interface typeItem {
|
|
id:string
|
|
name:string
|
|
}
|
|
export type { ChannelRows,typeItem };
|