Skip to content

Instantly share code, notes, and snippets.

@AnthonyLzq
Created November 19, 2022 00:41
Show Gist options
  • Save AnthonyLzq/19d59f007827aad263d2bfe9aa5aca1f to your computer and use it in GitHub Desktop.
Save AnthonyLzq/19d59f007827aad263d2bfe9aa5aca1f to your computer and use it in GitHub Desktop.
Global .d.ts file that will work using declare global
import { MqttClient } from 'mqtt'
declare global {
interface Route {
sub: (client: MqttClient) => void
PUB_TOPIC: string
SUB_TOPIC: string
}
}
export {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment