7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
export type ChannelReorderSchema = {
|
|
id: string;
|
|
position?: number;
|
|
lock_permissions?: boolean;
|
|
parent_id?: string;
|
|
}[];
|