@zodic/shared 0.0.238 → 0.0.240
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/types/scopes/legacy.ts
CHANGED
|
@@ -22,7 +22,7 @@ export type ZodiacSignSlug = (typeof zodiacSigns)[number];
|
|
|
22
22
|
export const houses = Array.from({ length: 12 }, (_, i) => i + 1);
|
|
23
23
|
|
|
24
24
|
// Aspects
|
|
25
|
-
const aspects = ["conjunction", "opposition", "trine", "square", "sextile"] as const;
|
|
25
|
+
export const aspects = ["conjunction", "opposition", "trine", "square", "sextile"] as const;
|
|
26
26
|
export type AspectType = (typeof aspects)[number];
|
|
27
27
|
|
|
28
28
|
export const pointTypes: Record<PointSlug, string> = {
|