@jirkasa/code-box
Version:
Showcase code samples on the web with a container that lets users select and display different samples.
13 lines (12 loc) • 413 B
TypeScript
import CodeBoxFileManager from "../CodeBoxFileManager";
/** Used internally by ProjectCodeBox to store file. */
declare class FileEntry {
/** Code box file manager. */
readonly codeBoxFileManager: CodeBoxFileManager;
/**
* Creates new file entry.
* @param codeBoxFileManager Code box file manager.
*/
constructor(codeBoxFileManager: CodeBoxFileManager);
}
export default FileEntry;