cic-staff-client/src/testing/token-service-stub.ts
2020-11-25 10:54:00 +03:00

9 lines
138 B
TypeScript

export class TokenServiceStub {
getBySymbol(symbol: string): any {
return {
name: 'Reserve',
symbol: 'RSV'
};
}
}