UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

7 lines (6 loc) 252 B
export declare type TDecorator = (target: any) => any; interface IDecorateTargetWith<Target> { with: (...decorators: TDecorator[]) => Target; } export default function decorate<Target = any>(target: Target): IDecorateTargetWith<Target>; export {};