lakutata
Version:
An IoC-based universal application framework.
8 lines (4 loc) • 323 B
TypeScript
import { I as IConstructor } from './TypeDef.11.js';
type ClassDecorator<Constructor extends IConstructor> = (target: Constructor) => Constructor | void;
type PropertyDecorator<ClassPrototype> = (target: ClassPrototype, propertyKey: string | symbol) => void;
export type { ClassDecorator as C, PropertyDecorator as P };