antd-mobile
Version:
<div align="center">
11 lines (10 loc) • 360 B
TypeScript
import { ReactNode } from 'react';
export declare const CheckListContext: import("react").Context<{
value: string[];
check: (val: string) => void;
uncheck: (val: string) => void;
activeIcon?: ReactNode;
extra?: ((active: boolean) => ReactNode) | undefined;
disabled?: boolean | undefined;
readOnly?: boolean | undefined;
} | null>;