mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 06:09:33 +00:00
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
// Control UI type declarations define markdown it task lists contracts.
|
|
declare module "markdown-it-task-lists" {
|
|
import type MarkdownIt from "markdown-it";
|
|
interface TaskListsOptions {
|
|
enabled?: boolean;
|
|
label?: boolean;
|
|
labelAfter?: boolean;
|
|
}
|
|
const plugin: (md: MarkdownIt, options?: TaskListsOptions) => void;
|
|
export default plugin;
|
|
}
|