UNPKG

1.53 kBTypeScriptView Raw
1/**
2 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 */
8import type { Config, Printer, Refs } from './types';
9/**
10 * Return entries (for example, of a map)
11 * with spacing, indentation, and comma
12 * without surrounding punctuation (for example, braces)
13 */
14export declare function printIteratorEntries(iterator: Iterator<[unknown, unknown]>, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer, separator?: string): string;
15/**
16 * Return values (for example, of a set)
17 * with spacing, indentation, and comma
18 * without surrounding punctuation (braces or brackets)
19 */
20export declare function printIteratorValues(iterator: Iterator<unknown>, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer): string;
21/**
22 * Return items (for example, of an array)
23 * with spacing, indentation, and comma
24 * without surrounding punctuation (for example, brackets)
25 **/
26export declare function printListItems(list: ArrayLike<unknown>, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer): string;
27/**
28 * Return properties of an object
29 * with spacing, indentation, and comma
30 * without surrounding punctuation (for example, braces)
31 */
32export declare function printObjectProperties(val: Record<string, unknown>, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer): string;