Skip to content

Commit abceae8

Browse files
committed
Formatting
1 parent cbc8bc0 commit abceae8

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

crates/bindings-typescript/test-app/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ function App() {
5454
);
5555
}
5656

57-
export default App;
57+
export default App;

crates/bindings-typescript/test-app/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
77
<React.StrictMode>
88
<App />
99
</React.StrictMode>
10-
);
10+
);

crates/bindings-typescript/tsup.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ export default defineConfig([
2727
treeshake: 'smallest',
2828
external: ['undici'],
2929
// env variable used at build time to determine platform-specific code
30-
// see: websocket_decompress_adapter.ts
30+
// see: websocket_decompress_adapter.ts
3131
env: {
32-
BROWSER: 'false',
32+
BROWSER: 'false',
3333
},
3434
outExtension,
3535
esbuildOptions: commonEsbuildTweaks(),

sdks/typescript/examples/quickstart-chat/src/App.integration.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { render, screen, waitFor } from '@testing-library/react';
22
import userEvent from '@testing-library/user-event';
3-
import { describe, it, expect } from "vitest";
3+
import { describe, it, expect } from 'vitest';
44
import App from './App';
55

66
describe('App Integration Test', () => {

sdks/typescript/examples/quickstart-chat/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,4 @@ function App() {
267267
);
268268
}
269269

270-
export default App;
270+
export default App;

sdks/typescript/examples/quickstart-chat/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ createRoot(document.getElementById('root')!).render(
77
<StrictMode>
88
<App />
99
</StrictMode>
10-
);
10+
);

sdks/typescript/tsup.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ export default defineConfig([
6565
| Options
6666
| Options[]
6767
| ((
68-
overrideOptions: Options
69-
) => Options | Options[] | Promise<Options | Options[]>) as
68+
overrideOptions: Options
69+
) => Options | Options[] | Promise<Options | Options[]>) as
7070
| Options
7171
| Options[]
7272
| ((
73-
overrideOptions: Options
74-
) => Options | Options[] | Promise<Options | Options[]>);
73+
overrideOptions: Options
74+
) => Options | Options[] | Promise<Options | Options[]>);

0 commit comments

Comments
 (0)