8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import type { TextStyle } from '../TextStyle';
|
|
/**
|
|
* Generates a unique key for the text style.
|
|
* @param style - The style to generate a key for.
|
|
* @returns the key for the style.
|
|
*/
|
|
export declare function generateTextStyleKey(style: TextStyle): string;
|