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>
5 行
198 B
TypeScript
5 行
198 B
TypeScript
declare function hasOwn<O, K extends PropertyKey>(o: O, p: K): p is K & keyof O;
|
|
declare function hasOwn<O, K extends PropertyKey, V = unknown>(o: O, p: K): o is O & Record<K, V>;
|
|
|
|
export = hasOwn;
|