UNPKG

svelte-preprocess

Version:

A Svelte preprocessor wrapper with baked in support for common used preprocessors

10 lines (9 loc) 302 B
import { 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[]; }>;