Skip to content
This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (21 loc) · 988 Bytes

idecorator.md

File metadata and controls

35 lines (21 loc) · 988 Bytes

redux-data-service > IDecorator

Interface: IDecorator

A TypeScript property decorator. Use it wisely, my son. see: http://www.typescriptlang.org/docs/handbook/decorators.html#decorator-factories

see: https://gist.github.com/remojansen/16c661a7afd68e22ac6e#file-property_decorator-ts-L1

Type parameters

T

Hierarchy

IDecorator

Callable

__call(target: T, key: string): void

Defined in Model/Decorators/IDecorator.ts:7

A TypeScript property decorator. Use it wisely, my son.

Parameters:

Name Type
target T
key string

Returns: void

Index