@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>
9 lines • 527 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isJsonSourceCode = exports.isLiquidSourceCode = void 0;
const theme_check_common_1 = require("@shopify/theme-check-common");
const isLiquidSourceCode = (file) => file.type === theme_check_common_1.SourceCodeType.LiquidHtml;
exports.isLiquidSourceCode = isLiquidSourceCode;
const isJsonSourceCode = (file) => file.type === theme_check_common_1.SourceCodeType.JSON;
exports.isJsonSourceCode = isJsonSourceCode;
//# sourceMappingURL=types.js.map
;