mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-01 19:58:15 +00:00
7 lines
84 B
TypeScript
7 lines
84 B
TypeScript
export enum BitWidth {
|
|
WIDTH8 = 0,
|
|
WIDTH16 = 1,
|
|
WIDTH32 = 2,
|
|
WIDTH64 = 3,
|
|
}
|