formats.exposed/public/gif/constants.js

14 lines
216 B
JavaScript
Raw Normal View History

// @ts-check
/** @enum {string} */
export const GifNodeType = [
"root",
"header",
"headerSignature",
"headerVersion",
].reduce((result, id) => {
result[id] = id;
return result;
}, Object.create(null));