console-feed
Version:
A React component that displays console logs from the current page, an iframe or transported across a server
14 lines (13 loc) • 335 B
TypeScript
declare enum Arithmetic {
infinity = 0,
minusInfinity = 1,
minusZero = 2
}
declare const _default: {
type: string;
lookup: NumberConstructor;
shouldTransform(type: any, value: any): boolean;
toSerializable(value: any): Arithmetic;
fromSerializable(data: Arithmetic): number;
};
export default _default;