1package imap
2
3import (
4	"io"
5)
6
7// A literal, as defined in RFC 3501 section 4.3.
8type Literal interface {
9	io.Reader
10
11	// Len returns the number of bytes of the literal.
12	Len() int
13}
14