codenames
Version:
Converts numerical values into human-readable names following a specific theme (e.g., cities)
24 lines • 1.56 kB
TypeScript
/**
* Auto-generated from food.txt. Do not edit manually.
* Run 'bun run scripts/generate.ts food Food' to regenerate.
*
* SPDX-FileCopyrightText: 2025-present Kriasoft
* SPDX-License-Identifier: MIT
*/
export declare const food: readonly ["bread", "milk", "egg", "rice", "meat", "fish", "cake", "apple", "cheese", "pasta", "pizza", "soup", "salad", "chicken", "beef", "pork", "bacon", "butter", "sugar", "salt", "honey", "tea", "coffee", "juice", "water", "wine", "beer", "cookie", "pie", "ice", "cream", "candy", "chips", "burger", "taco", "toast", "yogurt", "fruit", "bean", "corn", "carrot", "potato", "tomato", "onion", "garlic", "lemon", "orange", "grape", "peach", "pear"];
export type Food = (typeof food)[number];
/**
* Converts a number to a Food codename
*
* @param input - The number to convert
* @returns A Food name
*
* @example
* ```typescript
* import codename from "codenames/food-50";
* codename(1234) // "honey"
* ```
*/
export declare const codename: (input: number) => "fish" | "orange" | "cream" | "peach" | "wine" | "grape" | "lemon" | "honey" | "bread" | "milk" | "egg" | "rice" | "meat" | "cake" | "apple" | "cheese" | "pasta" | "pizza" | "soup" | "salad" | "chicken" | "beef" | "pork" | "bacon" | "butter" | "sugar" | "salt" | "tea" | "coffee" | "juice" | "water" | "beer" | "cookie" | "pie" | "ice" | "candy" | "chips" | "burger" | "taco" | "toast" | "yogurt" | "fruit" | "bean" | "corn" | "carrot" | "potato" | "tomato" | "onion" | "garlic" | "pear";
export default codename;
//# sourceMappingURL=food-50.d.ts.map