12345678910111213141516171819202122232425262728293031323334353637 |
- import type * as PrettyFormat from './types';
- declare function prettyFormat(val: unknown, options?: PrettyFormat.OptionsReceived): string;
- declare namespace prettyFormat {
- var plugins: {
- AsymmetricMatcher: PrettyFormat.NewPlugin;
- ConvertAnsi: PrettyFormat.NewPlugin;
- DOMCollection: PrettyFormat.NewPlugin;
- DOMElement: PrettyFormat.NewPlugin;
- Immutable: PrettyFormat.NewPlugin;
- ReactElement: PrettyFormat.NewPlugin;
- ReactTestComponent: PrettyFormat.NewPlugin;
- };
- }
- declare namespace prettyFormat {
- type Colors = PrettyFormat.Colors;
- type Config = PrettyFormat.Config;
- type Options = PrettyFormat.Options;
- type OptionsReceived = PrettyFormat.OptionsReceived;
- type OldPlugin = PrettyFormat.OldPlugin;
- type NewPlugin = PrettyFormat.NewPlugin;
- type Plugin = PrettyFormat.Plugin;
- type Plugins = PrettyFormat.Plugins;
- type Refs = PrettyFormat.Refs;
- type Theme = PrettyFormat.Theme;
- }
- export = prettyFormat;
|