UNPKG

jsdk-offical

Version:

JSDK is the most comprehensive TypeScript framework, like JDK.

25 lines (18 loc) 538 B
/// <reference path="../../../../../dist/jsdk.d.ts" /> module AppDemo { export namespace api { export namespace user { export class UserApi { static readUserById:Api<User> = { method: 'GET', url: '../data/one-user.json', dataKlass: User } static read404:Api<Model> = { url: 'none.json' } } } } } import UserApi = AppDemo.api.user.UserApi;