pixi-fusion
Version:
This module offers a set of common components needed for playing games.
12 lines (11 loc) • 348 B
TypeScript
type WallOptions = {
thikness: number;
};
type UseWallsOptions = {
left?: Partial<WallOptions> | boolean;
right?: Partial<WallOptions> | boolean;
top?: Partial<WallOptions> | boolean;
bottom?: Partial<WallOptions> | boolean;
};
export declare const useWalls: ({ left, right, top, bottom }?: UseWallsOptions) => void;
export {};