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.

18 lines
536 B

4 months ago
import { SequentialOptions } from '../types';
import { Linear } from './linear';
export interface Sequential {
invert: undefined;
getOptions(): SequentialOptions;
update(updateOptions: Partial<SequentialOptions>): void;
}
/**
* Sequential
*
*
*/
export declare class Sequential extends Linear {
protected getDefaultOptions(): SequentialOptions;
constructor(options?: SequentialOptions);
clone(): Sequential;
}