@rr0/time
Version:
EDTF parsing
17 lines • 605 B
text/typescript
export class Level1Second extends Level1Component {
/**
* @param {string} str
* @return {Level1Second | {start: Level1Second, end: Level1Second}}
*/
static fromString(str: string): Level1Second | {
start: Level1Second;
end: Level1Second;
};
/**
* @param {Level1ComponentSpec} spec The second spec value.
* @param [unit] The second unit.
*/
constructor(spec: Level1ComponentSpec, unit?: import("../../calendar/index.mjs").CalendarUnit);
}
import { Level1Component } from "../component/index.mjs";
//# sourceMappingURL=Level1Second.d.mts.map