UNPKG

tcx-builder

Version:
15 lines (14 loc) 505 B
import { BaseObject, NameKeyReference } from '../_common'; import { CourseFolderAttributes } from './CourseFolderAttributes'; export declare class CourseFolder extends BaseObject { attributes: CourseFolderAttributes; Folder?: CourseFolder[]; CourseNameRef?: NameKeyReference[]; Notes?: string; constructor(attributes: CourseFolderAttributes, options: { folder?: CourseFolder[]; courseNameRef?: NameKeyReference[]; notes?: string; }); toXml(): string; }