Files
md-blog/vite.d.ts
T
klemek f92baf3b82
Deploy / Build (push) Has been cancelled
Deploy / Deploy to Stapler (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / Oxlint (push) Has been cancelled
Lint / TypeScript (push) Has been cancelled
feat: obfuscate build files
2026-07-17 11:09:43 +02:00

13 lines
282 B
TypeScript

declare module '*.md' {
// "unknown" would be more detailed depends on how you structure frontmatter
const attributes: Record<string, unknown>
// When "Mode.HTML" is requested
const html: string
// Modify below per your usage
export { html }
}
declare module '*.vue'