mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
15 lines
425 B
TypeScript
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;
|