gatsby
Version:
Blazing fast modern site generator for React
13 lines (12 loc) • 478 B
TypeScript
import type { IGatsbyNode } from "../redux/types";
import type { GatsbyIterable } from "../datastore/common/iterable";
type Data = IGatsbyNode | GatsbyIterable<IGatsbyNode>;
type sanitizeNode = (data: Data, isNode?: boolean, path?: Set<unknown>) => Data | undefined;
/**
* Make data serializable
* @param {(Object|Array)} data to sanitize
* @param {boolean} isNode = true
* @param {Set<string>} path = new Set
*/
export declare const sanitizeNode: sanitizeNode;
export {};