Skip to content

Commit

Permalink
chore: 🤖 No need to expose MoebiusAccentColors
Browse files Browse the repository at this point in the history
  • Loading branch information
phun-ky committed Nov 24, 2023
1 parent 1b09722 commit 3065878
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ import {
import { MoebiusSVGHelper } from './classes/MoebiusSVGHelper';
import { MoebiusPalettes } from './classes/MoebiusPalettes';
import { MoebiusColor } from './classes/MoebiusColor';
import { MoebiusAccentColors } from './classes/MoebiusAccentColors';

export type MoebiusReturnType = Promise<{
MoebiusColor: typeof MoebiusColor;
MoebiusPalettes: typeof MoebiusPalettes;
MoebiusSVGHelper: typeof MoebiusSVGHelper;
MoebiusAccentColors: typeof MoebiusAccentColors;
}>;

const initializeColorNames = async (): Promise<
Expand Down Expand Up @@ -57,8 +55,7 @@ async function Moebius(): MoebiusReturnType {
return {
MoebiusColor: MoebiusColorAbstract as typeof MoebiusColor,
MoebiusPalettes,
MoebiusSVGHelper,
MoebiusAccentColors
MoebiusSVGHelper
};
}

Expand Down

0 comments on commit 3065878

Please sign in to comment.