7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { Type } from '@angular/core';
|
|
|
|
import { VendorService } from './vendor.service';
|
|
import { GameService } from './game.service';
|
|
|
|
export const SERVICES: Type<any>[] = [VendorService, GameService];
|