@sanity/migrate
Version:
Tooling for running data migrations on Sanity.io projects
9 lines • 333 B
TypeScript
export type JsonObject = {
[Key in string]: JsonValue;
} & {
[Key in string]?: JsonValue | undefined;
};
export type JsonArray = JsonValue[] | readonly JsonValue[];
export type JsonPrimitive = boolean | number | string | null;
export type JsonValue = JsonArray | JsonObject | JsonPrimitive;
//# sourceMappingURL=json.d.ts.map