UNPKG

@tokens-studio/types

Version:

![NPM version badge](https://img.shields.io/npm/v/@tokens-studio/types) ![License badge](https://img.shields.io/github/license/tokens-studio/types)

5 lines (4 loc) 344 B
import { TokenTypes } from '../../constants/TokenTypes.js'; import { TokenTypographyValue } from '../values/index.js'; import { SingleGenericToken } from './SingleGenericToken.js'; export type SingleTypographyToken<Named extends boolean = true, P = unknown> = SingleGenericToken<TokenTypes.TYPOGRAPHY, TokenTypographyValue | string, Named, P>;