From d52b8c3dfba9468404d4a51f010dde2f23cb876a Mon Sep 17 00:00:00 2001 From: killer069 <65385476+killer069@users.noreply.github.com> Date: Fri, 17 Dec 2021 15:37:30 +0530 Subject: [PATCH] Changed import for esm --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e7d73b..d4c9476 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ const { video_basic_info, stream } = require('play-dl'); **ES6 modules:** ```ts -import * as play from 'play-dl'; // Everything +import play from 'play-dl'; // Everything import { video_basic_info, stream } from 'play-dl'; // Individual functions ```