UNPKG

pixi-fusion

Version:

This module offers a set of common components needed for playing games.

7 lines (6 loc) 246 B
import React, { PropsWithChildren } from "react"; import { ContainerOptions } from "pixi.js"; export type LayerOptions = { options?: Omit<ContainerOptions, "parent">; }; export declare const Layer: React.FC<PropsWithChildren & LayerOptions>;