Skip to content

Commit 26f09ba

Browse files
ci: apply automated fixes
1 parent f7009a5 commit 26f09ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/event-bus-plugin/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ This package is still under active development and might have breaking changes i
44

55
## General Usage
66

7-
```tsx
7+
```tsx
88
import { TanstackDevtoolsEventSubscription } from '@tanstack/devtools-event-bus-plugin'
99

1010
interface EventMap {
1111
'query-devtools:a': { foo: string }
1212
'query-devtools:b': { foo: number }
13-
}
13+
}
1414

1515
class QueryDevtoolsPlugin extends TanstackDevtoolsEventSubscription<EventMap> {
1616
constructor() {
@@ -23,8 +23,8 @@ class QueryDevtoolsPlugin extends TanstackDevtoolsEventSubscription<EventMap> {
2323
export const queryPlugin = new QueryDevtoolsPlugin()
2424

2525
// I'm fully typed here
26-
plugin.emit("a", {
27-
foo: "bar"
26+
plugin.emit('a', {
27+
foo: 'bar',
2828
})
2929
plugin.on('b', (e) => {
3030
// I'm fully typed here

0 commit comments

Comments
 (0)