mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
|
|
import stream = require("stream");
|
|
import rotateStream = require("logrotate-stream");
|
|
|
|
var s: stream.Writable = rotateStream({
|
|
file: "mylogfile.log",
|
|
size: "1m",
|
|
keep: 3
|
|
});
|