mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 22:09:29 +08:00
10 lines
379 B
Text
10 lines
379 B
Text
import type { PreprocessorArgs } from '../types';
|
|
export declare const getTagInfo: ({ attributes, filename, content, markup, }: PreprocessorArgs) => Promise<{
|
|
filename: string | undefined;
|
|
attributes: Record<string, string | boolean>;
|
|
content: string;
|
|
lang: string | null | undefined;
|
|
alias: string | null;
|
|
dependencies: string[];
|
|
markup: string;
|
|
}>;
|