@fluster.io/dev
Version:
19 lines (18 loc) • 412 B
TypeScript
import { FC } from 'react';
export interface WithInlineMdxProp {
InlineMdxContent: FC<{
mdx: string;
}>;
}
export interface PositionableProps {
center?: boolean;
sidebar?: boolean;
right?: boolean;
}
export interface MediaPlayerProps extends PositionableProps {
file?: string;
/** The user's note directory. */
basePath: string;
id?: string;
autoPlay?: boolean;
}