mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 19:58:03 +01:00
9 lines
118 B
Go
9 lines
118 B
Go
|
|
package terminal
|
||
|
|
|
||
|
|
import "io"
|
||
|
|
|
||
|
|
type Terminal interface {
|
||
|
|
Size() (int, int, error)
|
||
|
|
Record(string, io.Writer) error
|
||
|
|
}
|