Skip to content

Commit

Permalink
types removed
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Oct 1, 2022
1 parent 9c08663 commit 76a2374
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/utils/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
interface IStore {
hydrate?: () => PVoid;
}
type Stores = Record<string, IStore>;

type StoreDefaultKeys = 'set' | 'setMany' | 'hydrate';
type StoreKeysOf<S> = keyof Omit<S, StoreDefaultKeys>;
Expand All @@ -11,7 +10,6 @@ type StoreKeysOf<S> = keyof Omit<S, StoreDefaultKeys>;
interface IService {
init: () => PVoid;
}
type Services = Record<string, IService>;

// System
type PVoid = Promise<void>;
Expand All @@ -21,7 +19,6 @@ type PureFuncAsync = () => PVoid;
type PureFuncArg<T> = (value?: T) => void;

// Design system
// type StatusBarStyle = 'light' | 'dark' | undefined;
type ThemeColors = {
textColor: string;
bgColor: string;
Expand Down

0 comments on commit 76a2374

Please sign in to comment.