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>
7 行
249 B
TypeScript
7 行
249 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
export type PropertyNamesError = ErrorObject<"propertyNames", {
|
|
propertyName: string;
|
|
}, AnySchema>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|