-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
import Aedes, { AedesOptions } from './types/instance' | ||
export * from './types/instance'; | ||
Check failure on line 1 in aedes.d.ts GitHub Actions / test (16, ubuntu-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (16, windows-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (16, macOS-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (18, ubuntu-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (18, windows-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (18, macOS-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (20, ubuntu-latest)
Check failure on line 1 in aedes.d.ts GitHub Actions / test (20, windows-latest)
|
||
export * from './types/packet'; | ||
Check failure on line 2 in aedes.d.ts GitHub Actions / test (16, ubuntu-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (16, windows-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (16, macOS-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (18, ubuntu-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (18, windows-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (18, macOS-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (20, ubuntu-latest)
Check failure on line 2 in aedes.d.ts GitHub Actions / test (20, windows-latest)
|
||
export * from './types/client'; | ||
Check failure on line 3 in aedes.d.ts GitHub Actions / test (16, ubuntu-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (16, windows-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (16, macOS-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (18, ubuntu-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (18, windows-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (18, macOS-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (20, ubuntu-latest)
Check failure on line 3 in aedes.d.ts GitHub Actions / test (20, windows-latest)
|
||
|
||
export declare function createBroker (options?: AedesOptions): Aedes | ||
|
||
export * from './types/instance' | ||
export * from './types/packet' | ||
export * from './types/client' | ||
export default Aedes | ||
|
||
declare module 'aedes' { | ||
export = Aedes | ||
} | ||
export { default } from './types/instance'; | ||
Check failure on line 5 in aedes.d.ts GitHub Actions / test (16, ubuntu-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (16, windows-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (16, macOS-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (18, ubuntu-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (18, windows-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (18, macOS-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (20, ubuntu-latest)
Check failure on line 5 in aedes.d.ts GitHub Actions / test (20, windows-latest)
|