github-docs-arabic-enhanced / src /types /markdownlint-rule-search-replace.d.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
declare module 'markdownlint-rule-search-replace' {
const searchReplace: {
names: string[]
description: string
tags: string[]
// Using any because this is a third-party library without proper TypeScript definitions
// params contains markdownlint-specific data structures, onError is a callback function
function: (params: any, onError: any) => void
}
export default searchReplace
}