tcx-builder
Version:
13 lines (12 loc) • 470 B
TypeScript
import { BaseObject, NameKeyReference } from '../_common';
import { WorkoutFolderAttributes } from './WorkoutFolderAttributes';
export declare class WorkoutFolder extends BaseObject {
attributes: WorkoutFolderAttributes;
Folder?: WorkoutFolder[];
WorkoutNameRef?: NameKeyReference[];
constructor(attributes: WorkoutFolderAttributes, options: {
folder?: WorkoutFolder[];
workoutNameRef?: NameKeyReference[];
});
toXml(): string;
}