yoni-mcscripts-lib
Version:
为 Minecraft Script API 中的部分接口创建了 wrapper,并提供简单的事件管理器和任务管理器,另附有一些便于代码编写的一些小工具。
5 lines (4 loc) • 433 B
text/typescript
type ClassDecorator0 = <TFunction extends Function>(target: TFunction) => TFunction | void;
type PropertyDecorator0 = (target: Object, propertyKey: string | symbol) => void;
type MethodDecorator0 = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
type ParameterDecorator0 = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;