mirror of
https://github.com/acamarata/moon-cycle.git
synced 2026-06-30 18:54:29 +00:00
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.
809 B
809 B
moon-cycle / imageFolder
Function: imageFolder()
imageFolder(
set,size,quality):string
Defined in: helpers.ts:13
Returns the folder name for a given image set, size, and quality.
Folder names follow the pattern {set}-{size}-{quality}, matching the
directory layout in the moon-cycle repository.
Parameters
set
size
quality
Returns
string
Example
imageFolder('mm', 256, 75) // => 'mm-256-75'
imageFolder('my', 512, 85) // => 'my-512-85'