@stencila/thema
Version:
Themes for executable documents
13 lines (12 loc) • 315 B
TypeScript
import React from 'react';
declare type Props = {};
interface State {
activeTheme: string;
}
export declare class ThemeEditor extends React.PureComponent<Props, State> {
constructor(props: Props);
setTheme: (theme: string) => void;
componentDidMount(): void;
render(): JSX.Element;
}
export {};