Skip to content

Commit 7d62755

Browse files
committed
Fix TS Lint issues
1 parent a1a60a1 commit 7d62755

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/php-wasm/compile/php/php_wasm.c

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ unsigned int wasm_sleep(unsigned int time)
3333
}
3434

3535

36+
3637
extern int *wasm_setsockopt(int sockfd, int level, int optname, intptr_t optval, size_t optlen, int dummy);
3738

3839
/**

packages/php-wasm/node/src/test/php-networking.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { SupportedPHPVersions } from '@php-wasm/universal';
1+
import { type SupportedPHPVersion } from '@php-wasm/universal';
22
import express from 'express';
33
import { rootCertificates } from 'tls';
44
import { NodePHP } from '..';
55

6-
describe.each(['8.0'])(
6+
describe.each(['8.0' as SupportedPHPVersion])(
77
'PHP %s',
88
(phpVersion) => {
99
it('should be able to make a request to a server', async () => {

0 commit comments

Comments
 (0)