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>
8 行
359 B
TypeScript
8 行
359 B
TypeScript
/**
|
|
* Allowed arithmetic operators
|
|
*/
|
|
export type CompareOperator = '>' | '>=' | '=' | '<' | '<=' | '!=';
|
|
export declare const semver: RegExp;
|
|
export declare const validateAndParse: (version: string) => RegExpMatchArray;
|
|
export declare const compareSegments: (a: string | string[] | RegExpMatchArray, b: string | string[] | RegExpMatchArray) => 0 | 1 | -1;
|