From a5c4bc400099fa42056c2361b66eb6bfb5ee78d2 Mon Sep 17 00:00:00 2001 From: DimaMukhin Date: Fri, 24 Aug 2018 21:09:14 -0700 Subject: [PATCH] removed auto generated comments --- types/koa2-session-redis/index.d.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/types/koa2-session-redis/index.d.ts b/types/koa2-session-redis/index.d.ts index 195dc30247..24e85e1674 100644 --- a/types/koa2-session-redis/index.d.ts +++ b/types/koa2-session-redis/index.d.ts @@ -4,23 +4,11 @@ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 -/*~ Note that ES6 modules cannot directly export class objects. - *~ This file should be imported using the CommonJS-style: - *~ import x = require('someLibrary'); - *~ - *~ Refer to the documentation to understand common - *~ workarounds for this limitation of ES6 modules. - */ - import * as Redis from 'redis'; import * as session from 'koa-session'; -/*~ This declaration specifies that the class constructor function - *~ is the exported object from the file - */ export = RedisStore; -/*~ Write your module's methods and properties in this class */ declare class RedisStore implements session.stores { constructor(config?: Redis.ClientOpts);