From 2a8eeb2899225be846002b0b13a4001775f22fcd Mon Sep 17 00:00:00 2001 From: Josh Guyette Date: Mon, 17 Jul 2023 15:59:56 -0500 Subject: [PATCH] updated docs --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 63746c2..b5ac6d9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,24 @@ # Schedule Later -schedule-later is a TypeScript class that provides methods for managing time-based tasks, such as starting and stopping timeouts and intervals at specific times. +schedule-later is a static class that provides methods for managing date-time based tasks, such as starting timeouts and intervals at a specific time of day. + +## Install + +```bash +npm install schedule-later +``` + +or + +```bash +yarn add schedule-later +``` + +## Import + +```typescript +import Scheduler from 'schedule-later' +``` ## Key Concepts