werpu / ts-ng-tinydecorations

A low footprint set of angular 4 like typescript decorations for angular 1.5+
MIT License
1 stars 0 forks source link

Extended Decorations #2

Open werpu opened 6 years ago

werpu commented 6 years ago

User Request

Extended decorations ala PostRest, GetRest, PutRest to avoid param duplication over some methods (Post Rest is a post call as rest annotation instead of @Rest{method: POST

werpu commented 6 years ago

export function POST(restMetaData: IRestMetaData) { restMetaData.method = "POST"; return Rest(restMetaData) }

required functions POSTForList (Post with isArray = true) POST GETForList GET