summary refs log tree commit diff
path: root/src/util/schemas/ChannelReorderSchema.ts
blob: c6e59ebdbfb8dc7c51e5a98f275985a5741f08d0 (plain) (blame)
1
2
3
4
5
6
export type ChannelReorderSchema = {
	id: string;
	position?: number;
	lock_permissions?: boolean;
	parent_id?: string;
}[];