21 lines
410 B
JavaScript
21 lines
410 B
JavaScript
// @ts-check
|
|
|
|
/** @enum {string} */
|
|
export const GifNodeType = [
|
|
"root",
|
|
|
|
"header",
|
|
"headerSignature",
|
|
"headerVersion",
|
|
|
|
"logicalScreenDescriptor",
|
|
"logicalScreenWidth",
|
|
"logicalScreenHeight",
|
|
"logicalScreenDescriptorPackedFields",
|
|
"logicalScreenBackgroundColorIndex",
|
|
"logicalScreenPixelAspectRatio",
|
|
].reduce((result, id) => {
|
|
result[id] = id;
|
|
return result;
|
|
}, Object.create(null));
|