mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
25 lines
894 B
TypeScript
25 lines
894 B
TypeScript
|
/**
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
import type { NewPlugin, OptionsReceived } from './types';
|
||
|
export type { Colors, Config, Options, OptionsReceived, OldPlugin, NewPlugin, Plugin, Plugins, Printer, Refs, Theme, } from './types';
|
||
|
/**
|
||
|
* Returns a presentation string of your `val` object
|
||
|
* @param val any potential JavaScript object
|
||
|
* @param options Custom settings
|
||
|
*/
|
||
|
export declare function format(val: unknown, options?: OptionsReceived): string;
|
||
|
export declare const plugins: {
|
||
|
AsymmetricMatcher: NewPlugin;
|
||
|
ConvertAnsi: NewPlugin;
|
||
|
DOMCollection: NewPlugin;
|
||
|
DOMElement: NewPlugin;
|
||
|
Immutable: NewPlugin;
|
||
|
ReactElement: NewPlugin;
|
||
|
ReactTestComponent: NewPlugin;
|
||
|
};
|
||
|
export default format;
|