aboutsummaryrefslogtreecommitdiff
path: root/src/utils/dependencies.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/dependencies.ts')
-rw-r--r--src/utils/dependencies.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/dependencies.ts b/src/utils/dependencies.ts
index 67bf502..3ef84b7 100644
--- a/src/utils/dependencies.ts
+++ b/src/utils/dependencies.ts
@@ -37,7 +37,7 @@ export const importApngJs = makeLazy(async () => {
});
// https://wiki.mozilla.org/APNG_Specification#.60fcTL.60:_The_Frame_Control_Chunk
-export enum ApngDisposeOp {
+export const enum ApngDisposeOp {
/**
* no disposal is done on this frame before rendering the next; the contents of the output buffer are left as is.
*/
@@ -53,7 +53,7 @@ export enum ApngDisposeOp {
}
// TODO: Might need to somehow implement this
-export enum ApngBlendOp {
+export const enum ApngBlendOp {
SOURCE,
OVER
}