web_lib

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

error.ts (226B)


      1 export const cl_sql_error = {
      2     idb_undefined: "error.client.sql.idb_undefined"
      3 } as const;
      4 
      5 export type ClientSqlError = keyof typeof cl_sql_error;
      6 export type ClientSqlErrorMessage = (typeof cl_sql_error)[ClientSqlError];