-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c28bd44
commit e1f0968
Showing
4 changed files
with
126 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/// <reference types="node"/> | ||
import * as stream from 'stream'; | ||
import {ZlibOptions} from 'zlib'; | ||
|
||
declare namespace gzipSize { | ||
type Options = ZlibOptions; | ||
|
||
interface GzipSizeStream extends stream.PassThrough { | ||
addListener(event: 'gzip-size', listener: (size: number) => void): this; | ||
addListener( | ||
event: string | symbol, | ||
listener: (...args: any[]) => void | ||
): this; | ||
on(event: 'gzip-size', listener: (size: number) => void): this; | ||
on(event: string | symbol, listener: (...args: any[]) => void): this; | ||
once(event: 'gzip-size', listener: (size: number) => void): this; | ||
once(event: string | symbol, listener: (...args: any[]) => void): this; | ||
removeListener(event: 'gzip-size', listener: (size: number) => void): this; | ||
removeListener( | ||
event: string | symbol, | ||
listener: (...args: any[]) => void | ||
): this; | ||
off(event: 'gzip-size', listener: (size: number) => void): this; | ||
off(event: string | symbol, listener: (...args: any[]) => void): this; | ||
emit(event: 'gzip-size', size: number): boolean; | ||
emit(event: string | symbol, ...args: any[]): boolean; | ||
prependListener(event: 'gzip-size', listener: (size: number) => void): this; | ||
prependListener( | ||
event: string | symbol, | ||
listener: (...args: any[]) => void | ||
): this; | ||
prependOnceListener( | ||
event: 'gzip-size', | ||
listener: (size: number) => void | ||
): this; | ||
prependOnceListener( | ||
event: string | symbol, | ||
listener: (...args: any[]) => void | ||
): this; | ||
|
||
/** | ||
Contains the gzip size of the stream after it is finished. Since this happens asynchronously, it is recommended you use the `gzip-size` event instead. | ||
*/ | ||
gzipSize?: number; | ||
} | ||
} | ||
|
||
declare const gzipSize: { | ||
/** | ||
Get the gzipped size of a string or buffer. | ||
@returns The gzipped size of `input`. | ||
*/ | ||
(input: string | Buffer, options?: gzipSize.Options): Promise<number>; | ||
|
||
/** | ||
Synchronously get the gzipped size of a string or buffer. | ||
@returns The gzipped size of `input`. | ||
@example | ||
``` | ||
import gzipSize = require('gzip-size'); | ||
const text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.'; | ||
console.log(text.length); | ||
//=> 191 | ||
console.log(gzipSize.sync(text)); | ||
//=> 78 | ||
``` | ||
*/ | ||
sync(input: string | Buffer, options?: gzipSize.Options): number; | ||
|
||
/** | ||
@returns A stream that emits a `gzip-size` event and has a `gzipSize` property. | ||
*/ | ||
stream(options?: gzipSize.Options): gzipSize.GzipSizeStream; | ||
|
||
/** | ||
Get the gzipped size of a file. | ||
@returns The size of the file. | ||
*/ | ||
file(path: string, options?: gzipSize.Options): Promise<number>; | ||
}; | ||
|
||
export = gzipSize; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import {expectType} from 'tsd'; | ||
import * as fs from 'fs'; | ||
import gzipSize = require('.'); | ||
|
||
expectType<Promise<number>>(gzipSize('foo')); | ||
expectType<Promise<number>>(gzipSize('foo', {chunkSize: 1})); | ||
expectType<number>(gzipSize.sync('foo')); | ||
expectType<number>(gzipSize.sync('foo', {chunkSize: 1})); | ||
const gstream = fs | ||
.createReadStream('index.d.ts') | ||
.pipe(gzipSize.stream()) | ||
.pipe(gzipSize.stream({chunkSize: 1})) | ||
.on('gzip-size', size => expectType<number>(size)); | ||
expectType<number | undefined>(gstream.gzipSize); | ||
expectType<Promise<number>>(gzipSize.file('index.d.ts')); | ||
expectType<Promise<number>>(gzipSize.file('index.d.ts', {chunkSize: 1})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters