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