frontend/.pnpm-store/v3/files/5d/a1c57b648fe9644fffe59fd311a7f94513e3b978c6af5a74a8d02f14f975de29163cf134e60be68edae1ea72a843fa3d0c45fc0aca1bab1a2b3036219947fa

10 lines
307 B
Plaintext

import type { PreprocessorArgs } from '../types';
export declare const getTagInfo: ({ attributes, filename, content, }: PreprocessorArgs) => Promise<{
filename: string;
attributes: Record<string, string | boolean>;
content: string;
lang: string;
alias: any;
dependencies: any[];
}>;