@shopify/theme-language-server-common
Version:
<h1 align="center" style="position: relative;" > <br> <img src="https://github.com/Shopify/theme-check-vscode/blob/main/images/shopify_glyph.png?raw=true" alt="logo" width="141" height="160"> <br> Theme Language Server </h1>
12 lines • 409 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isInputSetting = exports.isSettingsCategory = void 0;
function isSettingsCategory(x) {
return 'settings' in x;
}
exports.isSettingsCategory = isSettingsCategory;
function isInputSetting(x) {
return 'id' in x && 'type' in x && 'label' in x;
}
exports.isInputSetting = isInputSetting;
//# sourceMappingURL=index.js.map
;