Skip to content

Commit

Permalink
refactor(adjacency): switch to non-const enums
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Apr 4, 2020
1 parent 334dc3f commit fd5c401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/adjacency/src/api.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { Fn2, Pair } from "@thi.ng/api";

export const enum DegreeType {
export enum DegreeType {
IN,
OUT,
BOTH
BOTH,
}

export interface IGraph {
Expand Down

0 comments on commit fd5c401

Please sign in to comment.