rittenhop-ghost/versions/5.94.2/node_modules/lexical/nodes/LexicalTabNode.d.ts

28 lines
1.1 KiB
TypeScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import type { DOMConversionMap, NodeKey } from '../LexicalNode';
import { LexicalNode } from '../LexicalNode';
import { SerializedTextNode, TextDetailType, TextModeType, TextNode } from './LexicalTextNode';
export type SerializedTabNode = SerializedTextNode;
/** @noInheritDoc */
export declare class TabNode extends TextNode {
static getType(): string;
static clone(node: TabNode): TabNode;
constructor(key?: NodeKey);
static importDOM(): DOMConversionMap | null;
static importJSON(serializedTabNode: SerializedTabNode): TabNode;
exportJSON(): SerializedTabNode;
setTextContent(_text: string): this;
setDetail(_detail: TextDetailType | number): this;
setMode(_type: TextModeType): this;
canInsertTextBefore(): boolean;
canInsertTextAfter(): boolean;
}
export declare function $createTabNode(): TabNode;
export declare function $isTabNode(node: LexicalNode | null | undefined): node is TabNode;