mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
Use Deno global var instead of built-in "deno" module (denoland/deno_std#247)
Original: 395392912d
This commit is contained in:
parent
fd74b38d36
commit
f90f62fa52
19 changed files with 36 additions and 27 deletions
|
@ -1,7 +1,10 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
const { Buffer, copy, remove } = Deno;
|
||||
import { Closer, Reader, ReadResult, Writer } from "deno";
|
||||
type Closer = Deno.Closer;
|
||||
type Reader = Deno.Reader;
|
||||
type ReadResult = Deno.ReadResult;
|
||||
type Writer = Deno.Writer;
|
||||
import { FormFile } from "./formfile.ts";
|
||||
import {
|
||||
bytesFindIndex,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue