UNPKG

los-sxc

Version:

Seguridad empresarial desarrollada por LOS Team

16 lines (15 loc) 571 B
import ApolloBoost from 'apollo-boost'; import 'cross-fetch/polyfill'; import { Options } from './models/options.model'; import { SAPEmployee } from './services/employee.service'; import { Roles } from './services/roles.service'; import { Rooms } from './services/room.service'; import { Users } from './services/users.service'; export default class LOS { con: ApolloBoost<any>; constructor(options: Options); users(id?: string): Users; roles(id?: string): Roles; rooms(id?: string): Rooms; sapEmployee(id?: string): SAPEmployee; }