22 lines
293 B
TypeScript
22 lines
293 B
TypeScript
class Systime {
|
|
year: number;
|
|
dayOfYear: number;
|
|
hundredths: number;
|
|
|
|
constructor(date: Date) {
|
|
this.fromDate(date);
|
|
}
|
|
|
|
fromDate(date: Date): void {
|
|
}
|
|
|
|
toDate(): Date {
|
|
}
|
|
|
|
fromString(str: string): void {
|
|
}
|
|
|
|
toString(): string {
|
|
}
|
|
};
|