1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 16:55:17 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

feat: services

This commit is contained in:
kaz
2022-02-09 11:48:23 +08:00
parent 6b0e0efcb3
commit 18ca56db10
49 changed files with 11218 additions and 5626 deletions

View File

@@ -0,0 +1 @@
export * from './lib/services-api';

View File

@@ -0,0 +1,7 @@
import { servicesApi } from './services-api';
describe('servicesApi', () => {
it('should work', () => {
expect(servicesApi()).toEqual('services-api');
});
});

View File

@@ -0,0 +1,3 @@
export function servicesApi(): string {
return 'services-api';
}