UNPKG

@sanity/orderable-document-list

Version:

Drag-and-drop Document Ordering without leaving the Editing surface

11 lines (7 loc) 271 B
import type {SanityDocument} from 'sanity' import {ORDER_FIELD_NAME} from './helpers/constants' export interface SanityDocumentWithOrder extends SanityDocument { [ORDER_FIELD_NAME]?: string hasPublished?: boolean } export type NewItemPosition = 'after' | 'before'