@bemedev/basifun
Version:
Basic ts functions
24 lines • 725 B
TypeScript
import { DIGITS } from './constants';
/**
* ToString type - Auto-generated expression
*
* ⚠️ WARNING: This expression is auto-generated and should not be modified.
* Any manual changes will be overwritten during the next generation.
*
* @generated
* @readonly
* @author chlbri (bri_lvi@icloud.com)
*/
export type ToString<T extends number | string> = `${T}`;
/**
* Digit type - Auto-generated expression
*
* ⚠️ WARNING: This expression is auto-generated and should not be modified.
* Any manual changes will be overwritten during the next generation.
*
* @generated
* @readonly
* @author chlbri (bri_lvi@icloud.com)
*/
export type Digit = (typeof DIGITS)[number];
//# sourceMappingURL=types.d.ts.map