Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
22
node_modules/microdiff/dist/index.d.ts
generated
vendored
Normal file
22
node_modules/microdiff/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
export interface DifferenceCreate {
|
||||
type: "CREATE";
|
||||
path: (string | number)[];
|
||||
value: any;
|
||||
}
|
||||
export interface DifferenceRemove {
|
||||
type: "REMOVE";
|
||||
path: (string | number)[];
|
||||
oldValue: any;
|
||||
}
|
||||
export interface DifferenceChange {
|
||||
type: "CHANGE";
|
||||
path: (string | number)[];
|
||||
value: any;
|
||||
oldValue: any;
|
||||
}
|
||||
export type Difference = DifferenceCreate | DifferenceRemove | DifferenceChange;
|
||||
interface Options {
|
||||
cyclesFix: boolean;
|
||||
}
|
||||
export default function diff(obj: Record<string, any> | any[], newObj: Record<string, any> | any[], options?: Partial<Options>, _stack?: Record<string, any>[]): Difference[];
|
||||
export {};
|
||||
Reference in New Issue
Block a user