mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-01 08:42:55 +08:00
8 lines
169 B
Go
8 lines
169 B
Go
package util
|
|
|
|
// PPrinter wraps the PPrint function.
|
|
type PPrinter interface {
|
|
// PPrint takes an indentation string and pretty-prints.
|
|
PPrint(indent string) string
|
|
}
|