UNPKG

@gdquest/gd-school-mdx-components

Version:

Components specially made to work with GDSchool MDX lesson files.

11 lines 454 B
/// <reference types="react" /> import PropTypes, { type InferProps } from "prop-types"; export declare function GdSnippet({ title, code, hidePlayer, }: InferProps<typeof GdSnippet.propTypes>): JSX.Element; export declare namespace GdSnippet { var propTypes: { title: PropTypes.Requireable<string>; code: PropTypes.Validator<string>; hidePlayer: PropTypes.Requireable<boolean>; }; } //# sourceMappingURL=GdSnippet.d.ts.map