Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | // SPDX-License-Identifier: MIT
/**
* `@lgtm-hq/turbo-themes/catalog` — theme curation and picker metadata.
*
* Barrel for the `./catalog` subpath: the `createThemeCatalog` curation API
* (#495/#563, in `create.ts`) and the slim precomputed picker metadata
* (#497, in `entries.ts`). The root package barrel re-exports only
* `create.js` so the embedded catalog data stays out of bundles that don't
* import the `./catalog` subpath.
*/
export * from './create.js';
export {
catalog,
catalogById,
type ThemeCatalogEntry,
type ThemeCatalogPreview,
} from './entries.js';
|