This commit is contained in:
Kevin R
2020-09-10 00:23:56 +02:00
parent 0c694d86ad
commit e2b638eafb
9 changed files with 177 additions and 30 deletions

View File

@@ -19,6 +19,9 @@
import CircularBuffer from '../utils/circularBuffer'
import LogEntry from './logEntry'
/**
* Models the log.
*/
export default class Log extends CircularBuffer<LogEntry> {
public constructor(capacity: number) {
super(capacity)