@sanity/types
Version:
Type definitions for common Sanity data structures
33 lines (27 loc) • 878 B
text/typescript
import {type ComponentType} from 'react'
import {type PreviewConfig} from '../../preview'
import {type BaseSchemaDefinition} from './common'
import {type ReferenceOptions} from './reference'
/** @public */
export interface CrossDatasetReferenceDefinition extends BaseSchemaDefinition {
type: 'crossDatasetReference'
weak?: boolean
to: {
type: string
title?: string
icon?: ComponentType
preview?: PreviewConfig
/**
* @deprecated Unused. Configuring search is no longer supported.
*/
__experimental_search?: {path: string | string[]; weight?: number; mapWith?: string}[]
}[]
dataset: string
studioUrl?: (document: {id: string; type?: string}) => string | null
tokenId?: string
options?: ReferenceOptions
/**
* @deprecated Cross-project references are no longer supported, only cross-dataset
*/
projectId?: string
}