A string or number that can be used as text.
const text: TextString = 'Hello Pixi!';const text2: TextString = 12345;const text3: TextString = { toString: () => 'Hello Pixi!' }; Copy
const text: TextString = 'Hello Pixi!';const text2: TextString = 12345;const text3: TextString = { toString: () => 'Hello Pixi!' };
A string or number that can be used as text.