@yamlresume/playground
    Preparing search index...

    Interface EditorPanelProps

    Props for the EditorPanel component.

    interface EditorPanelProps {
        filename?: string;
        onChange: (value: string) => void;
        tooltips: Pick<
            PlaygroundTooltipMessages,
            "copy"
            | "undo"
            | "redo"
            | "clear",
        >;
        value: string;
    }
    Index

    Properties

    filename?: string

    The name of the file being edited.

    onChange: (value: string) => void

    Callback triggered when the content changes.

    tooltips: Pick<PlaygroundTooltipMessages, "copy" | "undo" | "redo" | "clear">

    Localized tooltip labels for editor actions.

    value: string

    The current YAML content of the editor.