/** * Class for role objects that use the ol HTML tag. */ export default class OrderedListData extends SectionData { /** * @inheritdoc */ addChild(displayObject: any): void; /** * @inheritdoc */ addChildAt(displayObject: any, index: any): void; /** * Sets whether the list order should be descending * @access public * @param {boolean} reverse - true if reversed should be enabled, false otherwise */ set reversed(arg: boolean); /** * Retrieves whether reversed is enabled * @access public * @returns {boolean} true if reversed is enabled, false otherwise, undefined * if this field is unset */ get reversed(): boolean; /** * Sets the starting value of the ordered list * @access public * @param {number} start - number representing the starting position of the list */ set start(arg: number); /** * Retrieves the starting value of the ordered list * @access public * @returns {number} number representing the starting position of the list, * undefined if this field is unset */ get start(): number; /** * Sets the type of marker to be used * @access public * @param {String} str - type of marker (1, A, a, I, i) */ set type(arg: string); /** * Retrieves the type of marker to be used * @access public * @returns {String} type of marker, undefined if this field is unset */ get type(): string; } import SectionData from "./SectionData";