UNPKG

@devbookhq/ui

Version:

Devbook UI is a React UI library

11 lines (10 loc) 320 B
/// <reference types="react" /> export declare type Output = 'error' | 'output'; export interface Props { stdout?: string[]; stderr?: string[]; height?: string; lightTheme?: boolean; } declare function Output({ stdout, stderr, lightTheme, height, }: Props): JSX.Element; export default Output;