You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
402 B

import Context from './context.js';
import type { Delta } from '../types.js';
declare class DiffContext extends Context<Delta> {
left: unknown;
right: unknown;
pipe: 'diff';
leftType?: string;
rightType?: string;
leftIsArray?: boolean;
rightIsArray?: boolean;
constructor(left: unknown, right: unknown);
setResult(result: Delta): this;
}
export default DiffContext;