moon-cycle/.github/wiki/api/variables/YEAR_IMAGES.md
Aric Camarata 208f7ffba1 docs: add TypeDoc API generation (typedoc@0.28.19 + typedoc-plugin-markdown@4.11.0)
Add typedoc and typedoc-plugin-markdown as devDependencies. Add typedoc.json config
targeting src/index.ts with markdown output to .github/wiki/api. Add docs script to
package.json. Generate initial API reference pages.

Part of T-E8-03 — TypeDoc automation for all 12 JS/TS packages.
2026-05-30 16:42:00 -04:00

24 lines
555 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[**moon-cycle v2.0.0**](../README.md)
***
[moon-cycle](../README.md) / YEAR\_IMAGES
# Variable: YEAR\_IMAGES
> `const` **YEAR\_IMAGES**: `8760` = `8760`
Defined in: [types.ts:77](https://github.com/acamarata/moon-cycle/blob/800a74670ed6ac7b6d239efd6ec627dbb009fcea/src/types.ts#L77)
Number of images in the yearly (`my`) dataset.
Equals 365 days × 24 hours. Filenames range from `"0001.webp"` to
`"8760.webp"`.
## Example
```ts
import { YEAR_IMAGES } from 'moon-cycle';
// Total hours in the yearly dataset
console.log(YEAR_IMAGES); // 8760
```