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

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