UNPKG

mithril-materialized

Version:
9 lines (8 loc) 307 B
import { FactoryComponent, Attributes } from 'mithril'; export interface CodeBlockAttrs extends Attributes { language?: string; code: string | string[]; newRow?: boolean; } /** A simple code block without syntax high-lighting */ export declare const CodeBlock: FactoryComponent<CodeBlockAttrs>;