8 lines
296 B
TypeScript
8 lines
296 B
TypeScript
import type { TextStyle } from '../../TextStyle';
|
|
/**
|
|
* Generates a font style string to use for `TextMetrics.measureFont()`.
|
|
* @param style
|
|
* @returns Font style string, for passing to `TextMetrics.measureFont()`
|
|
*/
|
|
export declare function fontStringFromTextStyle(style: TextStyle): string;
|