next-sanity
Version:
Sanity.io toolkit for Next.js
24 lines (20 loc) • 709 B
TypeScript
import {StudioProps} from 'sanity'
export declare function NextStudio(props: NextStudioProps): React.ReactNode
/** @public */
export declare interface NextStudioProps extends StudioProps {
children?: React.ReactNode
/**
* Render the <noscript> tag
* @defaultValue true
* @alpha
*/
unstable__noScript?: boolean
/**
* The 'hash' option is new feature that is not yet stable for production, but is available for testing and its API won't change in a breaking way.
* If 'hash' doesn't work for you, or if you want to use a memory based history, you can use the `unstable_history` prop instead.
* @alpha
* @defaultValue 'browser'
*/
history?: 'browser' | 'hash'
}
export {}