UNPKG

@jirkasa/code-box

Version:

Showcase code samples on the web with a container that lets users select and display different samples.

9 lines (8 loc) 189 B
/** Info about folder. */ type FolderInfo = { /** Name of folder. */ name: string; /** Indicates whether folder is opened. */ opened: boolean; }; export default FolderInfo;