// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Unicode {
///
/// Defines how emoji clusters resolve for terminal cell measurement.
///
public enum TerminalEmojiWidth
{
///
/// Resolve emoji clusters as two terminal cells.
///
Wide = 0,
///
/// Do not apply a whole-cluster emoji override; use East Asian Width-derived scalar widths.
///
EastAsianWidth = 1
}
}