0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00
denoland-deno/tools/core_mod.d.ts
Marvin Hagemeister 5f8834e15c chore: add more TS/JS types
- Add missing internal file mappings
- Fix some obvious TS type errors
2024-07-09 01:23:16 +02:00

15 lines
425 B
TypeScript

/// <reference path="../../deno_core/core/internal.d.ts" />
// deno-lint-ignore no-explicit-any
export const core: any;
// deno-lint-ignore no-explicit-any
type UncurryThis<T extends (this: any, ...args: any[]) => any> = (
self: ThisParameterType<T>,
...args: Parameters<T>
) => ReturnType<T>;
export const primordials: typeof __bootstrap.primordials;
// deno-lint-ignore no-explicit-any
export const internals: any;