Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny 2025-09-16 17:39:03 -07:00 committed by GitHub
commit c02565eaa8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2096 changed files with 14955 additions and 14023 deletions

View file

@ -7,25 +7,25 @@ import classNames from 'classnames';
import emojiRegex from 'emoji-regex';
import { sortBy } from 'lodash';
import { linkify, SUPPORTED_PROTOCOLS } from './Linkify';
import { linkify, SUPPORTED_PROTOCOLS } from './Linkify.js';
import type {
BodyRangesForDisplayType,
DisplayNode,
HydratedBodyRangeMention,
RangeNode,
} from '../../types/BodyRange';
} from '../../types/BodyRange.js';
import {
BodyRange,
insertRange,
collapseRangeTree,
groupContiguousSpoilers,
} from '../../types/BodyRange';
import { AtMention } from './AtMention';
import { isLinkSneaky } from '../../types/LinkPreview';
import { Emojify } from './Emojify';
import { AddNewLines } from './AddNewLines';
import type { LocalizerType } from '../../types/Util';
import type { FunJumboEmojiSize } from '../fun/FunEmoji';
} from '../../types/BodyRange.js';
import { AtMention } from './AtMention.js';
import { isLinkSneaky } from '../../types/LinkPreview.js';
import { Emojify } from './Emojify.js';
import { AddNewLines } from './AddNewLines.js';
import type { LocalizerType } from '../../types/Util.js';
import type { FunJumboEmojiSize } from '../fun/FunEmoji.js';
const EMOJI_REGEXP = emojiRegex();
export enum RenderLocation {