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.
 
 
 
 
 

10 lines
287 B

import Context from './context.js';
import type { Delta } from '../types.js';
declare class PatchContext extends Context<unknown> {
left: unknown;
delta: Delta;
pipe: 'patch';
nested?: boolean;
constructor(left: unknown, delta: Delta);
}
export default PatchContext;