UNPKG

arx-level-generator

Version:
13 lines (12 loc) 432 B
import { Expand } from 'arx-convert/utils'; import { Entity, EntityConstructorPropsWithoutSrc } from '../../Entity.js'; type LeverConstructorProps = Expand<EntityConstructorPropsWithoutSrc & { isSilent?: boolean; }>; export declare class Lever extends Entity { private propIsPulled; constructor({ isSilent, ...props }?: LeverConstructorProps); get isPulled(): boolean; set isPulled(value: boolean); } export {};