UNPKG

gatsby-source-sanity

Version:

Gatsby source plugin for building websites using Sanity.io as a backend.

14 lines (13 loc) 239 B
export interface SanityDocument { _id: string; _type: string; [key: string]: any; } export interface SanityRef { _ref: string; } export interface ApiError { statusCode: number; error: string; message: string; }