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>
9 行
255 B
TypeScript
9 行
255 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
export type RequiredError = ErrorObject<"required", {
|
|
missingProperty: string;
|
|
}, string[] | {
|
|
$data: string;
|
|
}>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|