Skip to main content
Module

std/node/https.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.// Copyright Joyent and Node contributors. All rights reserved. MIT license.
import { notImplemented } from "./_utils.ts";
export class Agent { constructor() { notImplemented(); }}export class Server { constructor() { notImplemented(); }}export function createServer() { notImplemented();}export function get() { notImplemented();}export const globalAgent = undefined;export function request() { notImplemented();}export default { Agent, Server, createServer, get, globalAgent, request,};