// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Tables {
///
/// Specifies the font container format used to store font table data.
///
internal enum TableFormat
{
///
/// woff font table format.
///
Woff,
///
/// woff2 font table format.
///
Woff2,
///
/// otf font table format.
///
Otf
}
}