Skip to content

Commit e3c19da

Browse files
committed
feat: Migrate to TypeScript
1 parent 5eecc0b commit e3c19da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3695
-4167
lines changed

lib/adapters/amqp.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { Application } from '@feathersjs/feathers';
2+
import { AmqpSyncOptions } from '../types';
3+
declare const _default: (config: AmqpSyncOptions) => (app: Application) => void;
4+
export default _default;

lib/adapters/amqp.js

Lines changed: 78 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/adapters/amqp.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/adapters/nats.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { Application } from '@feathersjs/feathers';
2+
import { NatsSyncOptions } from '../types';
3+
declare const _default: (config: NatsSyncOptions) => (app: Application) => void;
4+
export default _default;

lib/adapters/nats.js

Lines changed: 59 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/adapters/nats.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/adapters/redis.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { Application } from '@feathersjs/feathers';
2+
import { RedisSyncOptions } from '../types';
3+
declare const _default: (config: RedisSyncOptions) => (app: Application) => void;
4+
export default _default;

0 commit comments

Comments
 (0)