Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
628 B
13 lines
628 B
2 years ago
|
export { Unpackr, Decoder, unpack, decode, addExtension, FLOAT32_OPTIONS, clearSource, roundFloat32, isNativeAccelerationEnabled } from './unpack'
|
||
|
import { Options } from './unpack'
|
||
|
export { Packr, Encoder, pack, encode } from './pack'
|
||
|
import { Transform, Readable } from 'stream'
|
||
|
|
||
|
export as namespace msgpackr;
|
||
|
export class UnpackrStream extends Transform {
|
||
|
constructor(options?: Options | { highWaterMark: number, emitClose: boolean, allowHalfOpen: boolean })
|
||
|
}
|
||
|
export class PackrStream extends Transform {
|
||
|
constructor(options?: Options | { highWaterMark: number, emitClose: boolean, allowHalfOpen: boolean })
|
||
|
}
|