anyone-oslo/pages

View on GitHub
app/javascript/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Locale = {
  name: string;
  dir: "ltr" | "rtl";
};

export type LocalizedValue = Record<string, string>;
export type MaybeLocalizedValue = LocalizedValue | string;