mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
fix(std/wasi): ignore lint errors (#7197)
This commit is contained in:
parent
58bcb9880b
commit
59428e3d8a
1 changed files with 2 additions and 0 deletions
|
@ -228,6 +228,7 @@ const clock_time_monotonic = function (): bigint {
|
||||||
const clock_time_process = clock_time_monotonic;
|
const clock_time_process = clock_time_monotonic;
|
||||||
const clock_time_thread = clock_time_monotonic;
|
const clock_time_thread = clock_time_monotonic;
|
||||||
|
|
||||||
|
// deno-lint-ignore ban-types
|
||||||
function syscall(target: Function): Function {
|
function syscall(target: Function): Function {
|
||||||
return function (...args: unknown[]): number {
|
return function (...args: unknown[]): number {
|
||||||
try {
|
try {
|
||||||
|
@ -298,6 +299,7 @@ export default class Context {
|
||||||
// deno-lint-ignore no-explicit-any
|
// deno-lint-ignore no-explicit-any
|
||||||
fds: any[];
|
fds: any[];
|
||||||
|
|
||||||
|
// deno-lint-ignore ban-types
|
||||||
exports: Record<string, Function>;
|
exports: Record<string, Function>;
|
||||||
|
|
||||||
constructor(options: ContextOptions) {
|
constructor(options: ContextOptions) {
|
||||||
|
|
Loading…
Reference in a new issue