MCPcopy Create free account
hub / github.com/jitsucom/jitsu / Example

Interface Example

libs/jsondiffpatch/test/examples/diffpatch.ts:3–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import type { Delta, Options } from "../../src";
2
3interface Example {
4 name?: string;
5 options?: Options;
6 left: unknown;
7 right: unknown;
8 delta?: Delta;
9 reverse?: Delta;
10 exactReverse?: boolean;
11 noPatch?: boolean;
12 error?: RegExp;
13}
14
15type ExampleGroup = Example[];
16

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected