mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Added missing dependencies (#36886)
* Updated @feathersjs/socket-commons * Fixed linting errors. * Added type definitions for hook-less service methods. * Revert "Added type definitions for hook-less service methods." This reverts commit 14e8062a57f68b7c338ee092fb3e5cfea9e6f226. See https://github.com/DefinitelyTyped/DefinitelyTyped/pull/34684 * Improved service typings. * Fixed tests. * Fixed lint. * Fixed typo. * fix: Handle multiple dependent keys * Updated header * fix lint errors * fix lint errors * Added SOCKET_KEY export. * Updated header. * Removed unecessary imports. * Added missing dependencies.
This commit is contained in:
parent
72325b0b3d
commit
689921213e
@ -9,4 +9,7 @@ app.configure(feathersSocketIO({}, io => {}));
|
||||
app.configure(feathersSocketIO(1337, io => {}));
|
||||
app.configure(feathersSocketIO(1337, {}, io => {}));
|
||||
|
||||
app.channel('');
|
||||
app.publish('', () => undefined);
|
||||
|
||||
const key = SOCKET_KEY;
|
||||
|
||||
1
types/feathersjs__socketio/index.d.ts
vendored
1
types/feathersjs__socketio/index.d.ts
vendored
@ -5,6 +5,7 @@
|
||||
// Definitions: https://github.com/feathersjs-ecosystem/feathers-typescript
|
||||
// TypeScript Version: 2.8
|
||||
|
||||
/// <reference types="feathersjs__socket-commons"/>
|
||||
import * as io from 'socket.io';
|
||||
|
||||
declare const socketio: FeathersSocketIO;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user