Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kearfy committed Oct 29, 2023
1 parent 9ab19b6 commit 93ff131
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,4 @@ export type Subscription<Schema extends FeatureFlagSchema> = <
>(flag: T, value: FeatureFlagOption<Schema, T>) => unknown | Promise<unknown>;

// deno-lint-ignore no-explicit-any
export type AnyFeatureFlags = FeatureFlags<any, any>;
export type AnyFeatureFlags = FeatureFlags<any, any>;
6 changes: 5 additions & 1 deletion vue.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { onUnmounted, shallowRef } from "npm:vue";
import { FeatureFlags, type TFeatureFlags, type AnyFeatureFlags } from "./mod.ts";
import {
type AnyFeatureFlags,
FeatureFlags,
type TFeatureFlags,
} from "./mod.ts";

export function featureFlagsHookFactory<T extends AnyFeatureFlags>(
featureFlags: T,
Expand Down

0 comments on commit 93ff131

Please sign in to comment.