Files
nothoughts/node_modules/pixi.js/lib/scene/graphics/GraphicsMixins.d.ts
2025-08-04 18:57:35 +02:00

26 lines
578 B
TypeScript

declare global
{
namespace PixiMixins
{
interface RendererSystems
{
graphicsContext: import('./shared/GraphicsContextSystem').GraphicsContextSystem;
}
interface RendererPipes
{
graphics: import('./shared/GraphicsPipe').GraphicsPipe;
}
interface RendererOptions
{
/**
* A value from 0 to 1 that controls the smoothness of bezier curves (the higher the smoother)
* @default 0.5
*/
bezierSmoothness: number
}
}
}
export {};