web_lib

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

error.ts (318B)


      1 export const cl_datastore_error = {
      2     idb_undefined: "error.client.datastore.idb_undefined",
      3     no_result: "error.client.datastore.no_result"
      4 } as const;
      5 
      6 export type ClientDatastoreError = keyof typeof cl_datastore_error;
      7 export type ClientDatastoreErrorMessage = (typeof cl_datastore_error)[ClientDatastoreError];