interface ClipboardCopyState {
    copied: boolean;
    expanded: boolean;
    text: string;
    textWhenExpanded: string;
}

Properties

copied: boolean
expanded: boolean
text: string
textWhenExpanded: string