11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
import type { Plugin } from "unified";
|
|
import type { Root } from "hast";
|
|
interface RehypeCustomEmojiOptions {
|
|
sourceFile: string;
|
|
hidpiSourceFile?: string;
|
|
emojis: Record<string, [number, number]>;
|
|
size: number;
|
|
class?: string;
|
|
}
|
|
declare const plugin: Plugin<[Partial<RehypeCustomEmojiOptions>], Root>;
|
|
export default plugin;
|