matthew-matvei/freeman

View on GitHub
src/interfaces/props/panels/ITerminalHeaderProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IThemeableProps } from "props/common";

/** Describes properties for the TerminalHeader component. */
interface ITerminalHeaderProps extends IThemeableProps {

    /** The name of the shell used in the integrated terminal. */
    shellName: string;
}

export default ITerminalHeaderProps;