tcx-builder
Version:
19 lines (18 loc) • 615 B
TypeScript
import { BaseObject } from '../_common';
import { ActivityReference } from '../Activity';
import { Week } from '../Week';
import { HistoryFolderAttributes } from './HistoryFolderAttributes';
export declare class HistoryFolder extends BaseObject {
attributes: HistoryFolderAttributes;
Folder?: HistoryFolder[];
ActivityRef?: ActivityReference[];
Week?: Week[];
Notes?: string;
constructor(attributes: HistoryFolderAttributes, options: {
folder?: HistoryFolder[];
activityRef?: ActivityReference[];
week?: Week[];
notes?: string;
});
toXml(): string;
}