UNPKG

console-feed

Version:

A React component that displays console logs from the current page, an iframe or transported across a server

17 lines (16 loc) 381 B
interface Storage { name: string; body: string; proto: string; } /** * Serialize a function into JSON */ declare const _default: { type: string; lookup: FunctionConstructor; shouldTransform(type: any, obj: any): boolean; toSerializable(func: Function): Storage; fromSerializable(data: Storage): Storage | (() => void); }; export default _default;