11 lines
326 B
JavaScript
11 lines
326 B
JavaScript
/** @typedef {typeof SettingStatusEnum[keyof typeof SettingStatusEnum]} SettingStatus */
|
|
|
|
export const SettingStatusEnum = foundry.utils.deepFreeze({
|
|
Registered: `registered`,
|
|
Blocked: `blocked`,
|
|
Incompatible: `incompatible`,
|
|
Unknown: `unknown`,
|
|
});
|
|
|
|
/** @type {Record<string, SettingStatus>} */
|
|
export const status = {};
|