export type VariableDeclarationType = "var" | "let" | "const"; export const VariableDeclarationType = { Var: "var" as VariableDeclarationType, Let: "let" as VariableDeclarationType, Const: "const" as VariableDeclarationType };