cic-staff-client/src/testing/token-service-stub.ts

9 lines
139 B
TypeScript

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