Skip to content

Commit

Permalink
Updates variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Oct 7, 2024
1 parent 24a14f9 commit 82c74df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ export type ConsentManagerAPI = Readonly<{
/** Expose an option to grab the current view state */
getViewState: () => ViewState;
/** Get the current active language */
getTranscendPolicies: (
getPolicies: (
input?: GetTranscendPolicies,
) => Promise<TranscendPolicy[]>;
/** Callback that sets any dynamic variables that should be exposed to the consent UI messages */
setTranscendUiVariables: (variables: ObjByString) => Promise<void>;
setUiVariables: (variables: ObjByString) => Promise<void>;
/** Get the current value of Transcend UI variables */
getTranscendUiVariables: () => ObjByString;
getUiVariables: () => ObjByString;
/** Set consent change authorization key */
setAuth?: (key: AirgapAuthMap['key']) => void;
/** Change the current privacy policy URL */
Expand Down

0 comments on commit 82c74df

Please sign in to comment.