@jirkasa/code-box
Version:
Showcase code samples on the web with a container that lets users select and display different samples.
17 lines (16 loc) • 534 B
TypeScript
import FileButton from "../FileButton";
import ProjectCodeBoxFile from "./ProjectCodeBoxFile";
/** Represents file folder item. */
declare class FileFolderItem {
/** Code box file. */
readonly codeBoxFile: ProjectCodeBoxFile;
/** File button. */
readonly fileButton: FileButton;
/**
* Creates new file folder item.
* @param codeBoxFile Code box file.
* @param fileButton File button.
*/
constructor(codeBoxFile: ProjectCodeBoxFile, fileButton: FileButton);
}
export default FileFolderItem;