import Element from "../element"; import Rung from "../rung"; export default class Routine extends Element { class_id: string; _dom: any; constructor(name: string, description?: null); /** * Adds a rung to the ladder content * * @param {Rung} rung * @memberof Routine */ addRung(rung: Rung): this; /** * Checks if an incoming object is a Routine instance * * @static * @param {any} routine * @returns {boolean} * @memberof Tag */ static isRoutine(routine: { class_id: string; }): boolean | ""; }