devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 665 B
TypeScript
import { IParagraphPropertyDescriptor } from '../../model/paragraph/paragraph-property-descriptors';
import { ChangeParagraphPropertiesCommandBase } from './change-paragraph-properties-command-base';
export declare abstract class LineSpacingParagraphCommandBase<T, StateT> extends ChangeParagraphPropertiesCommandBase<T, StateT> {
protected getRelatedCommands(): Record<number, boolean>;
}
export declare class AddSpacingAfterParagraphCommand extends LineSpacingParagraphCommandBase<number, number> {
getDescriptor(): IParagraphPropertyDescriptor<number>;
isEnabled(): boolean;
DEPRECATEDConvertOptionsParameter(parameter: any): number;
}