Skip to content

Commit

Permalink
Fix TS Lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adamziel committed Apr 30, 2024
1 parent a1a60a1 commit 7d62755
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/php-wasm/compile/php/php_wasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ unsigned int wasm_sleep(unsigned int time)
}



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

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/php-wasm/node/src/test/php-networking.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { SupportedPHPVersions } from '@php-wasm/universal';
import { type SupportedPHPVersion } from '@php-wasm/universal';
import express from 'express';
import { rootCertificates } from 'tls';
import { NodePHP } from '..';

describe.each(['8.0'])(
describe.each(['8.0' as SupportedPHPVersion])(
'PHP %s',
(phpVersion) => {
it('should be able to make a request to a server', async () => {
Expand Down

0 comments on commit 7d62755

Please sign in to comment.