diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 17:57:06 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-13 17:57:06 +0100 |
| commit | 1118c377e32940ada179bfcde1549b73d8948626 (patch) | |
| tree | b9c858a47d19f129f20e06b102f7631c00d4fa71 /src/types/Month.d.ts | |
| parent | 08dbc1dc92dfa5e6842529775ffcf6f32fc220c8 (diff) | |
Pulls out Date components
Diffstat (limited to 'src/types/Month.d.ts')
| -rw-r--r-- | src/types/Month.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types/Month.d.ts b/src/types/Month.d.ts new file mode 100644 index 0000000..bfd5659 --- /dev/null +++ b/src/types/Month.d.ts @@ -0,0 +1,3 @@ +type Month = '01' | '02' | '03' | '04' | '05' | '06' | '07' | '08' | '09' | '10' | '11' | '12'; + +export default Month; |
