aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts')
-rw-r--r--vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts124
1 files changed, 0 insertions, 124 deletions
diff --git a/vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts b/vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts
deleted file mode 100644
index a229bcf..0000000
--- a/vanilla/node_modules/@vitest/pretty-format/dist/index.d.ts
+++ /dev/null
@@ -1,124 +0,0 @@
-/**
-* Copyright (c) Meta Platforms, Inc. and affiliates.
-*
-* This source code is licensed under the MIT license found in the
-* LICENSE file in the root directory of this source tree.
-*/
-interface 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 = (arg0: string) => string;
-type Refs = Array<unknown>;
-type Print = (arg0: unknown) => string;
-type Theme = Required<{
- comment?: string;
- content?: string;
- prop?: string;
- tag?: string;
- value?: string;
-}>;
-/**
-* compare function used when sorting object keys, `null` can be used to skip over sorting.
-*/
-type CompareKeys = ((a: string, b: string) => number) | null | undefined;
-type RequiredOptions = Required<PrettyFormatOptions>;
-interface Options extends Omit<RequiredOptions, "compareKeys" | "theme"> {
- compareKeys: CompareKeys;
- theme: Theme;
-}
-interface PrettyFormatOptions {
- callToJSON?: boolean;
- escapeRegex?: boolean;
- escapeString?: boolean;
- highlight?: boolean;
- indent?: number;
- maxDepth?: number;
- maxWidth?: number;
- min?: boolean;
- printBasicPrototype?: boolean;
- printFunctionName?: boolean;
- printShadowRoot?: boolean;
- compareKeys?: CompareKeys;
- plugins?: Plugins;
-}
-type OptionsReceived = PrettyFormatOptions;
-interface Config {
- callToJSON: boolean;
- compareKeys: CompareKeys;
- colors: Colors;
- escapeRegex: boolean;
- escapeString: boolean;
- indent: string;
- maxDepth: number;
- maxWidth: number;
- min: boolean;
- plugins: Plugins;
- printBasicPrototype: boolean;
- printFunctionName: boolean;
- printShadowRoot: boolean;
- spacingInner: string;
- spacingOuter: string;
-}
-type Printer = (val: unknown, config: Config, indentation: string, depth: number, refs: Refs, hasCalledToJSON?: boolean) => string;
-type Test = (arg0: any) => boolean;
-interface NewPlugin {
- serialize: (val: any, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer) => string;
- test: Test;
-}
-interface PluginOptions {
- edgeSpacing: string;
- min: boolean;
- spacing: string;
-}
-interface OldPlugin {
- print: (val: unknown, print: Print, indent: Indent, options: PluginOptions, colors: Colors) => string;
- test: Test;
-}
-type Plugin = NewPlugin | OldPlugin;
-type Plugins = Array<Plugin>;
-
-/**
-* Copyright (c) Meta Platforms, Inc. and affiliates.
-*
-* This source code is licensed under the MIT license found in the
-* LICENSE file in the root directory of this source tree.
-*/
-
-declare const DEFAULT_OPTIONS: Options;
-/**
-* Returns a presentation string of your `val` object
-* @param val any potential JavaScript object
-* @param options Custom settings
-*/
-declare function format(val: unknown, options?: OptionsReceived): string;
-declare const plugins: {
- AsymmetricMatcher: NewPlugin;
- DOMCollection: NewPlugin;
- DOMElement: NewPlugin;
- Immutable: NewPlugin;
- ReactElement: NewPlugin;
- ReactTestComponent: NewPlugin;
- Error: NewPlugin;
-};
-
-export { DEFAULT_OPTIONS, format, plugins };
-export type { Colors, CompareKeys, Config, NewPlugin, OldPlugin, Options, OptionsReceived, Plugin, Plugins, PrettyFormatOptions, Printer, Refs, Theme };