codenames
Version:
Converts numerical values into human-readable names following a specific theme (e.g., cities)
24 lines • 1.06 kB
TypeScript
/**
* Auto-generated from snacks.txt. Do not edit manually.
* Run 'bun run scripts/generate.ts snacks Snack' to regenerate.
*
* SPDX-FileCopyrightText: 2025-present Kriasoft
* SPDX-License-Identifier: MIT
*/
export declare const snacks: readonly ["chips", "nuts", "cookie", "pretzel", "popcorn", "candy", "fruit", "cheese", "cracker", "yogurt", "apple", "banana", "jerky", "granola", "raisin", "peanut", "almond", "cashew", "walnut", "pecan"];
export type Snack = (typeof snacks)[number];
/**
* Converts a number to a Snack codename
*
* @param input - The number to convert
* @returns A Snack name
*
* @example
* ```typescript
* import codename from "codenames/snacks-20";
* codename(1234) // "apple"
* ```
*/
export declare const codename: (input: number) => "apple" | "cheese" | "cookie" | "candy" | "chips" | "yogurt" | "fruit" | "almond" | "peanut" | "cashew" | "walnut" | "nuts" | "pretzel" | "popcorn" | "cracker" | "banana" | "jerky" | "granola" | "raisin" | "pecan";
export default codename;
//# sourceMappingURL=snacks-20.d.ts.map