mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-13 10:39:38 -06:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
/// <reference types="node" />
|
|
import * as http from 'http'
|
|
|
|
declare function createServer(options: {
|
|
/**
|
|
* Set a sub directory to be served
|
|
*/
|
|
root: string
|
|
}): http.Server
|
|
|
|
export = createServer
|