Urara-Blog/node_modules/.pnpm-store/v3/files/9c/823454e463fc6a5bd65ff74592fd186f1485d103672c64130f5e028b69a3847c184ac08af6e9a6a7e5ba6e393c1df5e9f05262eedfdb987dfe56fd31a92e3a
2022-08-14 01:14:53 +08:00

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;
}>;