web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

error.ts (397B)


      1 export const cl_radroots_error = {
      2     missing_base_url: "error.client.radroots.missing_base_url",
      3     account_registered: "error.client.radroots.account_registered",
      4     request_failure: "error.client.radroots.request_failure"
      5 } as const;
      6 
      7 export type ClientRadrootsError = keyof typeof cl_radroots_error;
      8 export type ClientRadrootsErrorMessage = (typeof cl_radroots_error)[ClientRadrootsError];