Skip to content

Commit

Permalink
fix(): fixed VueKeycloakPluginConfig type
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseGoncalves committed Jun 16, 2024
1 parent 6b9541b commit 9e4b6ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface KeycloakPluginConfig {
type KeycloakConfigFactory = () => KeycloakPluginConfig
type KeycloakConfigAsyncFactory = () => Promise<KeycloakPluginConfig>

type VueKeycloakPluginConfig = string | KeycloakPluginConfig | KeycloakConfigFactory | KeycloakConfigAsyncFactory
type VueKeycloakPluginConfig = KeycloakPluginConfig | KeycloakConfigFactory | KeycloakConfigAsyncFactory

export const vueKeycloak: ObjectPlugin = {
install: async (app: App, options: VueKeycloakPluginConfig) => {
Expand Down

0 comments on commit 9e4b6ba

Please sign in to comment.