Appearance
Settings ⚙️
The settings package is used as a central location for all settings related requests. These are used by both the resolver libraries and components package.
Usage
ts
import { settingsResolve } from '@fingermarkglobal/settings';
(async (): void => {
const serial: string = '1';
const settings = await settingsResolve(serial);
console.log(settings);
})();