diff --git a/packages/runtime/src/graphics/PortugolGraphicsContext.ts b/packages/runtime/src/graphics/PortugolGraphicsContext.ts index f61b3baa..4d324e5f 100644 --- a/packages/runtime/src/graphics/PortugolGraphicsContext.ts +++ b/packages/runtime/src/graphics/PortugolGraphicsContext.ts @@ -1,4 +1,4 @@ -import { PortugolGraphicsDrawCall } from "./PortugolGraphicsDrawCall"; +type PortugolGraphicsDrawCall = () => void; export class PortugolGraphicsContext extends EventTarget { window: Window | null = null; diff --git a/packages/runtime/src/graphics/PortugolGraphicsDrawCall.ts b/packages/runtime/src/graphics/PortugolGraphicsDrawCall.ts deleted file mode 100644 index b0353609..00000000 --- a/packages/runtime/src/graphics/PortugolGraphicsDrawCall.ts +++ /dev/null @@ -1,4 +0,0 @@ -/** - * Representa uma chamada de desenho de gráficos. - */ -export type PortugolGraphicsDrawCall = () => void; diff --git a/packages/runtime/src/graphics/index.ts b/packages/runtime/src/graphics/index.ts index 88f1111c..3abc14ec 100644 --- a/packages/runtime/src/graphics/index.ts +++ b/packages/runtime/src/graphics/index.ts @@ -1,2 +1 @@ export * from "./PortugolGraphicsContext.js"; -export * from "./PortugolGraphicsDrawCall.js";