@sanity/desk-tool
Version:
Tool for managing all sorts of content in a structured manner
10 lines • 335 B
TypeScript
import { TransactionLogEvent } from './types';
declare type StreamResult = TransactionLogEvent | {
error: {
description?: string;
type: string;
};
};
export declare function getJsonStream(url: string, token?: string): Promise<ReadableStream<StreamResult>>;
export {};
//# sourceMappingURL=getJsonStream.d.ts.map