-- ROBLOX upstream: https://github.com/facebook/jest/blob/v28.0.0/packages/pretty-format/src/types.ts
-- /**
--  * 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.
--  */

export type Colors = {
	comment: { close: string, open: string },
	content: { close: string, open: string },
	prop: { close: string, open: string },
	tag: { close: string, open: string },
	value: { close: string, open: string },
}
type Indent = (string) -> string
export type Refs = { [number]: any }
type Print = (any) -> string

export type Theme = {
	comment: string,
	content: string,
	prop: string,
	tag: string,
	value: string,
}

type ThemeReceived = {
	comment: string?,
	content: string?,
	prop: string?,
	tag: string?,
	value: string?,
}

export type CompareKeys = ((a: string, b: string) -> number) | nil

export type Options = {
	callToJSON: boolean,
	compareKeys: CompareKeys,
	escapeRegex: boolean,
	escapeString: boolean,
	highlight: boolean,
	indent: number,
	maxDepth: number,
	min: boolean,
	plugins: Plugins,
	printBasicPrototype: boolean,
	printInstanceDefaults: boolean,
	printInstanceTags: boolean,
	printFunctionName: boolean,
	-- ROBLOX deviation: stable stacktrace snapshots
	redactStackTracesInStrings: boolean?,
	theme: Theme,
	useStyledProperties: boolean,
}

export type PrettyFormatOptions = {
	callToJSON: boolean?,
	compareKeys: CompareKeys,
	escapeRegex: boolean?,
	escapeString: boolean?,
	highlight: boolean?,
	indent: number?,
	maxDepth: number?,
	min: boolean?,
	plugins: Plugins?,
	printBasicPrototype: boolean?,
	printInstanceDefaults: boolean?,
	printInstanceTags: boolean?,
	printFunctionName: boolean?,
	-- ROBLOX deviation: stable stacktrace snapshots
	redactStackTracesInStrings: boolean?,
	theme: ThemeReceived?,
	useStyledProperties: boolean?,
}

export type OptionsReceived = PrettyFormatOptions

export type Config = {
	callToJSON: boolean,
	compareKeys: CompareKeys,
	-- ROBLOX deviation: we don't support colors?
	colors: Colors?,
	escapeRegex: boolean,
	escapeString: boolean,
	indent: string,
	maxDepth: number,
	maxWidth: number,
	min: boolean,
	plugins: Plugins,
	printBasicPrototype: boolean,
	printInstanceDefaults: boolean,
	printInstanceTags: boolean,
	printFunctionName: boolean,
	-- ROBLOX deviation: stable stacktrace snapshots
	redactStackTracesInStrings: boolean,
	spacingInner: string,
	spacingOuter: string,
	useStyledProperties: boolean,
}

export type Printer = (any, Config, string, number, Refs, boolean?) -> string

type Test = (any) -> boolean

export type NewPlugin = {
	serialize: (any, Config, string, number, Refs, Printer) -> string,
	test: Test,
}

type PluginOptions = {
	edgeSpacing: string,
	min: boolean,
	spacing: string,
}

export type OldPlugin = {
	-- ROBLOX deviation: we don't support colors?
	print: (any, Print, Indent, PluginOptions, Colors?) -> string,
	test: Test,
}

export type Plugin = NewPlugin | OldPlugin

export type Plugins = { [number]: Plugin }

return {}
