Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
maslow committed Aug 3, 2021
1 parent 06f0a2a commit 270f766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-server/src/lib/policy-agent/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Params, Policy } from "less-api"



export type InjectionGetter = (payload: string, params: Params) => Promise<any>
export type InjectionGetter = (payload: any, params: Params) => Promise<any>

/**
* used in policy agent
Expand Down

0 comments on commit 270f766

Please sign in to comment.