UNPKG
rollun-ts-utils
Version:
latest (0.0.12)
rollun-ts-utils@0.0.3 (0.0.1)
0.0.12
0.0.11
0.0.10
0.0.9
0.0.6
0.0.5
0.0.4
0.0.2
0.0.1
Simple JavaScript utils
github.com/rollun-com/rollun-ts-utils
rollun-com/rollun-ts-utils
rollun-ts-utils
/
dist
/
to24htime.d.ts
7 lines
(6 loc)
•
196 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Turns 12h format time to 24h time *
@reference
https://www.timecalculator.net/12-hour-to-24-hour-converter */
declare
const
to24htime
:
(
time
:
string
) =>
string
;
export
default
to24htime;