/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libs/core_testing/ops.d.ts
60 строк
2 KB
Bartek Iwańczuk
chore: merge deno_core repo into main repo (#32353)
27 фев 2026, 21:25
Не верифицирован
27 фев 2026, 21:25
ad52a9f
Код
Авторство
О чём код?
// deno-lint-ignore-file no-explicit-any // Copyright 2018-2026 the Deno authors. MIT license. export function op_log_debug(...any: any[]): any; export function op_log_info(...any: any[]): any; export function op_test_register(...any: any[]): any; export function op_async_throw_error_deferred(...any: any[]): any; export function op_async_throw_error_eager(...any: any[]): any; export function op_async_throw_error_lazy(...any: any[]): any; export function op_error_context_async(...any: any[]): any; export function op_error_context_sync(...any: any[]): any; export function op_error_custom_sync(...any: any[]): any; export function op_error_custom_with_code_sync(...any: any[]): any; export function op_worker_await_close(...any: any[]): any; export function op_worker_parent(...any: any[]): any; export function op_worker_recv(...any: any[]): any; export function op_worker_send(...any: any[]): any; export function op_worker_spawn(...any: any[]): any; export function op_worker_terminate(...any: any[]): any; export function op_current_user_call_site(...any: any[]): any; export class DOMPointReadOnly {} export class DOMPoint { constructor(x?: number, y?: number, z?: number, w?: number); static fromPoint( other: { x?: number; y?: number; z?: number; w?: number }, ): DOMPoint; fromPoint( other: { x?: number; y?: number; z?: number; w?: number }, ): DOMPoint; get x(): number; get y(): number; get z(): number; get w(): number; wrappingSmi(value: number): number; } export class DOMPoint3D extends DOMPoint { constructor(x: number, y: number, z: number); description(): number; } export class TestObjectWrap { constructor(); withVarargs(...args: any[]): number; with_RENAME(): void; withAsyncFn(ms: number): Promise<void>; withThis(): void; withScopeFast(): void; undefinedResult(): undefined; undefinedUnit(): undefined; withValidateInt(value: number): void; } export class TestEnumWrap {}