export async function GetSingleValue()

in src/azurechat/features/common/appconfig.ts [37:43]


export async function GetSingleValue(key: string) {
  const singleValue = await appConfigStore.getConfigurationSetting({
    key: key
  });

  return singleValue.value as string;
}