UNPKG

sanity

Version:

Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches

13 lines (10 loc) 281 B
import {createContext} from 'sanity/_createContext' import type {CopyPasteContextType} from '../../core/studio/copyPaste' /** * @beta * @hidden */ export const CopyPasteContext = createContext<CopyPasteContextType | null>( 'sanity/_singletons/context/copy-paste', null, )