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
285 B

import Context from './context.js';
import type { Delta } from '../types.js';
declare class ReverseContext extends Context<Delta> {
delta: Delta;
pipe: 'reverse';
nested?: boolean;
newName?: `_${number}`;
constructor(delta: Delta);
}
export default ReverseContext;