Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 行
343 B
TypeScript
6 行
343 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
import { DependenciesErrorParams, PropertyDependencies } from "../applicator/dependencies";
|
|
export type DependentRequiredError = ErrorObject<"dependentRequired", DependenciesErrorParams, PropertyDependencies>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|