UNPKG

209 BTypeScriptView Raw
1import type { Main } from "../../main";
2import type { IEmitterShape } from "./IEmitterShape";
3export declare type EmittersMain = Main & {
4 addEmitterShape?: (name: string, shape: IEmitterShape) => void;
5};