mirror of
https://github.com/danbulant/mdsvexrs
synced 2026-05-19 04:08:47 +00:00
11 lines
No EOL
217 B
TypeScript
11 lines
No EOL
217 B
TypeScript
|
|
interface Options {
|
|
layout: string;
|
|
}
|
|
|
|
interface Plugin {
|
|
name: string;
|
|
markup: (opts: { content: string, filename: string }) => { code: string } | undefined;
|
|
}
|
|
|
|
export function mdsvexrs(options): Plugin; |