mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 10:06:17 +08:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
export type ReorderingType = 'front' | 'forward' | 'backward' | 'back';
|
|
|
|
export interface ReorderingAction<T> {
|
|
type: ReorderingType;
|
|
elements: T[];
|
|
}
|